Merge "salt-master-init.sh: Use stable 2016.11 salt ver"
[fuel.git] / mcp / scripts / user-data.template
1 #!/bin/bash
2 SALT_REPO=repo.saltstack.com/apt/ubuntu/16.04/amd64/2016.11
3 if [ "$(uname -i)" = "aarch64" ]; then
4   SALT_REPO=linux.enea.com/saltstack/apt/ubuntu/16.04/arm64/2016.11
5 fi
6 wget -O - "https://${SALT_REPO}/SALTSTACK-GPG-KEY.pub" | sudo apt-key add -
7 echo "deb https://${SALT_REPO} xenial main" > /etc/apt/sources.list.d/salt.list
8 apt update
9 apt-get install -y salt-minion
10 rm /etc/salt/minion_id
11 rm -f /etc/salt/pki/minion/minion_master.pub
12 echo "id: $(hostname).${CLUSTER_DOMAIN}" > /etc/salt/minion
13 echo "master: ${SALT_MASTER}" >> /etc/salt/minion
14 service salt-minion restart