Skip to content

Commit 909eafa

Browse files
author
Tim Pouyer
committed
1 parent daf9cbe commit 909eafa

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

Vagrantfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
2525
config.vm.define "opdk" do |opdk|
2626

2727
opdk.vm.box = "stackinabox/openstack"
28-
opdk.vm.box_version = "= 0.9.7"
28+
opdk.vm.box_version = "= 0.9.8"
2929

3030
# eth1, this will be OpenStacks's "management" network
3131
opdk.vm.network "private_network", ip: "192.168.27.100", adapter_ip: "192.168.27.1", netmask: "255.255.255.0", auto_config: true
@@ -79,6 +79,10 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
7979
vb.customize ["modifyvm", :id, "--usbehci", "off"]
8080
vb.customize ["modifyvm", :id, "--vrde", "off"]
8181
vb.customize ["guestproperty", "set", :id, "/VirtualBox/GuestAdd/VBoxService/--timesync-set-threshold", 10000]
82+
#fix for https://github.com/mitchellh/vagrant/issues/7648
83+
vb.customize ['modifyvm', :id, '--cableconnected1', 'on']
84+
vb.customize ['modifyvm', :id, '--cableconnected2', 'on']
85+
vb.customize ['modifyvm', :id, '--cableconnected3', 'on']
8286
end
8387

8488
end

0 commit comments

Comments
 (0)