Remove unused bootstrap.sh.tmpl
This commit is contained in:
parent
738107b523
commit
8d78388915
2 changed files with 4 additions and 39 deletions
|
@ -1,39 +0,0 @@
|
||||||
#!/bin/sh -
|
|
||||||
|
|
||||||
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
|
|
||||||
|
|
||||||
# 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
|
|
||||||
|
|
||||||
umask 077
|
|
||||||
cat >/etc/salt/grains <<EOF
|
|
||||||
roles:
|
|
||||||
# TODO: fill real roles
|
|
||||||
#roles:
|
|
||||||
# - gnuviechadmin.template
|
|
||||||
EOF
|
|
4
grains
4
grains
|
@ -0,0 +1,4 @@
|
||||||
|
roles:
|
||||||
|
# TODO: fill real roles
|
||||||
|
#roles:
|
||||||
|
# - gnuviechadmin.template
|
Loading…
Reference in a new issue