Skip to content
Snippets Groups Projects
Unverified Commit 1454ba4a authored by Matt Calvert's avatar Matt Calvert Committed by GitHub
Browse files

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
parent 4781df58
Branches
Tags
No related merge requests found
......@@ -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|
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment