summaryrefslogtreecommitdiffstats
path: root/.gitreview
blob: 0ba45105b900a80f0500bb1ccd4872a898c790a5 (plain)
1
2
3
4
user-data.template?id=92c7b08944b804e10b23ac26330149b039361fa4'>plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash
SALT_REPO=repo.saltstack.com/apt/ubuntu/16.04/amd64/2016.11
if [ "$(uname -i)" = "aarch64" ]; then
  SALT_REPO=linux.enea.com/saltstack/apt/ubuntu/16.04/arm64/2016.11
fi
wget -O - "https://${SALT_REPO}/SALTSTACK-GPG-KEY.pub" | sudo apt-key add -
echo "deb https://${SALT_REPO} 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