2015-10-04 14:20:44 +02:00
|
|
|
#!/bin/sh -
|
|
|
|
|
2016-09-24 23:50:52 +02:00
|
|
|
echo "deb http://httpredir.debian.org/debian jessie-backports main" >/etc/apt/sources.list.d/backports.list
|
|
|
|
|
|
|
|
apt-get update
|
|
|
|
apt-get install -y -t jessie-backports python-cryptography
|
|
|
|
|
2015-10-04 14:20:44 +02:00
|
|
|
# We just download the bootstrap script by default and execute that.
|
|
|
|
if [ -x /usr/bin/fetch ]; then
|
|
|
|
/usr/bin/fetch -o - https://raw.githubusercontent.com/saltstack/salt-bootstrap/stable/bootstrap-salt.sh | sh -s -- "$@"
|
|
|
|
elif [ -x /usr/bin/curl ]; then
|
|
|
|
/usr/bin/curl -L https://raw.githubusercontent.com/saltstack/salt-bootstrap/stable/bootstrap-salt.sh | sh -s -- "$@"
|
|
|
|
else
|
|
|
|
python \
|
|
|
|
-c 'import urllib; print urllib.urlopen("https://raw.githubusercontent.com/saltstack/salt-bootstrap/stable/bootstrap-salt.sh").read()' \
|
|
|
|
| sh -s -- "$@"
|
|
|
|
fi
|
|
|
|
|
|
|
|
cat >/etc/salt/minion <<EOF
|
|
|
|
file_client: local
|
|
|
|
|
|
|
|
file_roots:
|
|
|
|
base:
|
|
|
|
- /srv/salt/
|
|
|
|
|
|
|
|
pillar_roots:
|
|
|
|
base:
|
|
|
|
- /srv/pillar
|
|
|
|
|
|
|
|
log_file: file:///dev/log
|
|
|
|
EOF
|
2015-10-04 19:00:46 +02:00
|
|
|
|
2016-09-25 17:27:42 +02:00
|
|
|
umask 077
|
2015-10-04 19:00:46 +02:00
|
|
|
cat >/etc/salt/grains <<EOF
|
|
|
|
roles:
|
2016-01-29 23:26:57 +01:00
|
|
|
# TODO: fill real roles
|
|
|
|
#roles:
|
|
|
|
# - gnuviechadmin.template
|
2015-10-04 19:00:46 +02:00
|
|
|
EOF
|