2016-01-29 23:26:57 +01:00
|
|
|
#!/bin/sh -
|
|
|
|
|
2016-09-25 01:10:17 +02:00
|
|
|
apt-get update
|
2020-03-03 16:14:20 +01:00
|
|
|
apt-get install -y python3-cryptography
|
|
|
|
|
|
|
|
export salt_bootstrap_url=https://bootstrap.saltstack.com/
|
2016-09-25 01:10:17 +02:00
|
|
|
|
2016-01-29 23:26:57 +01:00
|
|
|
# We just download the bootstrap script by default and execute that.
|
|
|
|
if [ -x /usr/bin/fetch ]; then
|
2020-03-03 16:14:20 +01:00
|
|
|
/usr/bin/fetch -o - $salt_bootstrap_url | sh -s -- "$@"
|
2016-01-29 23:26:57 +01:00
|
|
|
elif [ -x /usr/bin/curl ]; then
|
2020-03-03 16:14:20 +01:00
|
|
|
/usr/bin/curl -L $salt_bootstrap_url | sh -s -- "$@"
|
2016-01-29 23:26:57 +01:00
|
|
|
else
|
2020-03-03 16:14:20 +01:00
|
|
|
python3 -c "from urllib.request import urlopen; print(urlopen(\"$salt_bootstrap_url\").read().decode('utf-8'))" | sh -s -- "$@"
|
2016-01-29 23:26:57 +01:00
|
|
|
fi
|
|
|
|
|
2020-03-03 16:14:20 +01:00
|
|
|
mkdir -p /etc/salt
|
|
|
|
|
2016-01-29 23:26:57 +01:00
|
|
|
cat >/etc/salt/minion <<EOF
|
|
|
|
file_client: local
|
|
|
|
|
|
|
|
file_roots:
|
|
|
|
base:
|
|
|
|
- /srv/salt/
|
|
|
|
|
|
|
|
pillar_roots:
|
|
|
|
base:
|
|
|
|
- /srv/pillar
|
|
|
|
|
|
|
|
log_file: file:///dev/log
|
|
|
|
EOF
|
|
|
|
|
2016-09-25 17:27:42 +02:00
|
|
|
umask 077
|
2016-01-29 23:26:57 +01:00
|
|
|
cat >/etc/salt/grains <<EOF
|
|
|
|
roles:
|
2016-01-31 16:23:53 +01:00
|
|
|
- ldapserver
|
2016-01-29 23:26:57 +01:00
|
|
|
- gnuviechadmin.gvaldap
|
|
|
|
EOF
|