2
0
Fork 0

Vagrant Updates:

* add Vagrant temp files to .gitignore
	* Update Vagrant Basebox to bento/ubuntu-18.04 (bento images deliver better Vagrant integration)
	* Update Vagrant setup-salt.sh to use the current salt bootstrap script.
This commit is contained in:
Martin Griesbach 2019-12-11 19:03:35 +01:00
parent 1c03133e34
commit 78048d88b2
3 changed files with 8 additions and 5 deletions

4
.gitignore vendored
View File

@ -120,3 +120,7 @@ docs/*.md
Dockerfile.*_*
ignore/
tmp/
#Vagrant Specific files
.vagrant
top.sls

2
Vagrantfile vendored
View File

@ -7,7 +7,7 @@
VAGRANTFILE_API_VERSION = '2'
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = 'ubuntu/trusty64'
config.vm.box = 'bento/ubuntu-18.04'
config.vm.hostname = 'salt'
config.vm.synced_folder './', '/srv/salt', id: 'vagrant-root'

View File

@ -1,8 +1,7 @@
#!/bin/sh
# use the latest stable Salt from repo.saltstack.com
wget -O - https://repo.saltstack.com/apt/ubuntu/14.04/amd64/latest/SALTSTACK-GPG-KEY.pub | sudo apt-key add -
echo 'deb http://repo.saltstack.com/apt/ubuntu/14.04/amd64/latest trusty main' | sudo tee /etc/apt/sources.list.d/saltstack.list
curl -o bootstrap-salt.sh -L https://bootstrap.saltstack.com
sudo sh bootstrap-salt.sh stable
sudo apt-get update -y
sudo apt-get install salt-master -y
@ -13,6 +12,6 @@ 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
# Accept all keys#
sudo salt-key -y -A