diff options
author | Michael Polenchuk <mpolenchuk@mirantis.com> | 2017-06-29 15:52:28 +0400 |
---|---|---|
committer | Michael Polenchuk <mpolenchuk@mirantis.com> | 2017-07-03 11:18:25 +0400 |
commit | e49e91d7aa740437c01e6531ef648d2dae97c11d (patch) | |
tree | 4227d9f205f59d5a6a1cdf086ad689dfc4bcb477 /mcp/scripts/user-data.template | |
parent | 3fb5e5454045860463a92c18d4d859967002e6fb (diff) |
Rewrite infra deployment scripts
* bring in scenario files
* shift infra code into functions
Change-Id: I650a26d03d842c3afcc7fcb97b84ef4826827a38
Signed-off-by: Michael Polenchuk <mpolenchuk@mirantis.com>
Diffstat (limited to 'mcp/scripts/user-data.template')
-rw-r--r-- | mcp/scripts/user-data.template | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mcp/scripts/user-data.template b/mcp/scripts/user-data.template new file mode 100644 index 000000000..811a58c70 --- /dev/null +++ b/mcp/scripts/user-data.template @@ -0,0 +1,10 @@ +#!/bin/bash +wget -O - https://repo.saltstack.com/apt/ubuntu/16.04/amd64/latest/SALTSTACK-GPG-KEY.pub | sudo apt-key add - +echo "deb http://repo.saltstack.com/apt/ubuntu/16.04/amd64/latest 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 |