Disable audio device mapping for VirtualBox VMs (#6811)

I can't see any reason why audio devices would be needed, and it can cause issues with the host audio
This commit is contained in:
Matt Calvert 2020-10-13 18:30:26 +01:00 committed by GitHub
parent 4781df587c
commit 1454ba4a9e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

1
Vagrantfile vendored
View file

@ -142,6 +142,7 @@ Vagrant.configure("2") do |config|
vb.gui = $vm_gui
vb.linked_clone = true
vb.customize ["modifyvm", :id, "--vram", "8"] # ubuntu defaults to 256 MB which is a waste of precious RAM
vb.customize ["modifyvm", :id, "--audio", "none"]
end
node.vm.provider :libvirt do |lv|