Browse Source

Vagrant: increased wait to ensure the minion sent it's key to the master before Accepting all keys.

tags/v0.57.0
Martin Griesbach 10 years ago
parent
commit
0c0b1745a8
1 changed files with 3 additions and 4 deletions
  1. +3
    -4
      dev/setup-salt.sh

+ 3
- 4
dev/setup-salt.sh View File

@@ -3,13 +3,12 @@ sudo add-apt-repository ppa:saltstack/salt -y
sudo apt-get update -y
sudo apt-get install salt-master -y
sudo apt-get install salt-minion -y
# Accept all keys#
sleep 5 #give the minion a few seconds to register
sudo salt-key -y -A
# setup top files to test the formula
sudo mkdir -p /srv/pillar
sudo ln -s /srv/salt/pillar.example /srv/pillar/salt.sls
sudo ln -s /srv/salt/dev/pillar_top.sls /srv/pillar/top.sls
# this file will be copied to make a running config. it should not be checked in.
sudo cp /srv/salt/dev/state_top.sls /srv/salt/top.sls

# Accept all keys#
sleep 15 #give the minion a few seconds to register
sudo salt-key -y -A

Loading…
Cancel
Save