Update Vagrant setup to Debian Buster and Python 3

This commit is contained in:
Jan Dittberner 2020-03-03 16:14:20 +01:00
parent 4ef03f141c
commit b54b8577cb
3 changed files with 12 additions and 7 deletions

3
Vagrantfile vendored
View file

@ -2,7 +2,7 @@
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vm.box = "debian/stretch64"
config.vm.box = "debian/buster64"
config.vm.hostname = "gvaldap.local"
config.vm.network "private_network", ip: "172.16.3.3", lxc__bridge_name: 'vlxcbr1'
@ -14,6 +14,7 @@ Vagrant.configure(2) do |config|
config.vm.provision :salt do |salt|
salt.bootstrap_script = "salt/bootstrap.sh"
salt.bootstrap_options = "-x python3"
salt.minion_id = "gvaldap"
salt.masterless = true
salt.run_highstate = true