From 12dc31165994c0fb458d6688bf6595e7b84fbd2c Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Mon, 3 Feb 2020 11:26:41 -0500 Subject: [PATCH] vagrant: disable audio interference Avoid Vagrant/virtualbox interferring with host audio when the VM boots. --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 4f896d31a..3737ce96c 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -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