vagrant: disable audio interference

Avoid Vagrant/virtualbox interferring with host audio when the VM boots.
This commit is contained in:
Mahmood Ali 2020-02-03 11:26:41 -05:00
parent d43e005291
commit 12dc311659
1 changed files with 1 additions and 1 deletions

2
Vagrantfile vendored
View File

@ -183,7 +183,7 @@ def configureProviders(vmCfg, cpus: "2", memory: "2048")
end
vmCfg.vm.provider "virtualbox" do |v|
v.customize ["modifyvm", :id, "--cableconnected1", "on"]
v.customize ["modifyvm", :id, "--cableconnected1", "on", "--audio", "none"]
v.memory = memory
v.cpus = cpus
end