Use official debian box and DHCP

pull/14/head
Emilien Mantel 2016-03-05 10:46:46 +01:00
parent 26a50945c5
commit 82c44be932
1 changed files with 4 additions and 4 deletions

8
Vagrantfile vendored
View File

@ -6,9 +6,9 @@
Vagrant.configure("2") do |config|
vms = [
[ "debian-wheezy", "deb/wheezy-amd64" , "192.168.33.27" ],
[ "debian-jessie", "deb/jessie-amd64", "192.168.33.28" ],
[ "debian-stretch", "sharlak/debian_stretch_64", "192.168.33.29" ]
[ "debian-wheezy", "debian/wheezy64" ],
[ "debian-jessie", "debian/jessie64" ],
[ "debian-stretch", "sharlak/debian_stretch_64" ]
]
config.vm.provider "virtualbox" do |v|
@ -19,7 +19,7 @@ Vagrant.configure("2") do |config|
vms.each do |vm|
config.vm.define vm[0] do |m|
m.vm.box = vm[1]
m.vm.network "private_network", ip: vm[2]
m.vm.network "private_network", type: "dhcp"
m.vm.provision "ansible" do |ansible|
ansible.playbook = "tests/test.yml"