diff options
author | Alexandru Avadanii <Alexandru.Avadanii@enea.com> | 2017-09-04 16:41:43 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-09-04 16:41:43 +0000 |
commit | 978fd9da91b6cdd522e79a4b8c31cf8f800222a3 (patch) | |
tree | ad7ce00712ea2d93d31491870c796c5613c8bc0f /mcp/scripts/user-data.template | |
parent | 405d814aa17b6cb52bf2fd26c1fec62679e8ff5e (diff) | |
parent | bb2dc1e4d661b51c561a60530639ba439d824870 (diff) |
Merge "salt.sh, user-data: Add Saltstack arm64 repo"
Diffstat (limited to 'mcp/scripts/user-data.template')
-rw-r--r-- | mcp/scripts/user-data.template | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/mcp/scripts/user-data.template b/mcp/scripts/user-data.template index cc97a6027..292c37c0c 100644 --- a/mcp/scripts/user-data.template +++ b/mcp/scripts/user-data.template @@ -1,6 +1,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 +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 http://${SALT_REPO} xenial main" > /etc/apt/sources.list.d/salt.list apt update apt-get install -y salt-minion rm /etc/salt/minion_id |