Merge "Vagrantfile: Add workaround for Virtualbox bug on guest audio config"

This commit is contained in:
Zuul 2018-06-06 00:35:04 +00:00 committed by Gerrit Code Review
commit d95da1cd43

2
Vagrantfile vendored
View File

@ -18,6 +18,8 @@ Vagrant.configure(2) do |config|
config.vm.provider "virtualbox" do |v|
v.memory = 6144
v.cpus = 2
# https://github.com/hashicorp/vagrant/issues/9524
v.customize ["modifyvm", :id, "--audio", "none"]
end
config.vm.synced_folder ".", "/vagrant", type: "rsync"