The /srv/se-book/bin/setup script on those Debian vagrant boxes ist running (instead of telling me the os is outdated, as in the default Vagrantfile).
Updated Vagrantfile is:
:~/salt-essentials-utils/virtual-machines$ cat Vagrantfile
-- snipped --
domain = 'example'
def_network = '172.31.0'
def_ram = '512'
os_debian = "generic/debian10"
nodes = [
{ :hostname => 'master', :ip => def_network+'.11', :box => os_debian},
{ :hostname => 'minion1', :ip => def_network+'.21', :box => os_debian},
{ :hostname => 'minion2', :ip => def_network+'.22', :box => os_debian},
{ :hostname => 'minion3', :ip => def_network+'.23', :box => os_debian},
{ :hostname => 'minion4', :ip => def_network+'.24', :box => os_debian},
]
--- snipped --
The /srv/se-book/bin/setup script on those Debian vagrant boxes ist running (instead of telling me the os is outdated, as in the default Vagrantfile).
Updated Vagrantfile is:
:~/salt-essentials-utils/virtual-machines$ cat Vagrantfile
-- snipped --
domain = 'example'
def_network = '172.31.0'
def_ram = '512'
os_debian = "generic/debian10"
nodes = [
{ :hostname => 'master', :ip => def_network+'.11', :box => os_debian},
{ :hostname => 'minion1', :ip => def_network+'.21', :box => os_debian},
{ :hostname => 'minion2', :ip => def_network+'.22', :box => os_debian},
{ :hostname => 'minion3', :ip => def_network+'.23', :box => os_debian},
{ :hostname => 'minion4', :ip => def_network+'.24', :box => os_debian},
]
--- snipped --