aboutsummaryrefslogtreecommitdiffstats
path: root/mcp/scripts/user-data.template
blob: cc97a6027fcd9ffcb926695e34cf0bcf3e25f90f (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash
wget -O - https://repo.saltstack.com/apt/ubuntu/16.04/amd64/2016.11/SALTSTACK-GPG-KEY.pub | sudo apt-key add -
echo "deb http://repo.saltstack.com/apt/ubuntu/16.04/amd64/2016.11 xenial main" > /etc/apt/sources.list.d/salt.list
apt update
apt-get install -y salt-minion
rm /etc/salt/minion_id
rm -f /etc/salt/pki/minion/minion_master.pub
echo "id: $(hostname).${CLUSTER_DOMAIN}" > /etc/salt/minion
echo "master: ${SALT_MASTER}" >> /etc/salt/minion
service salt-minion restart