From 9444e2dc43109fc7ec10a7ef33c84cbac4ae778f Mon Sep 17 00:00:00 2001 From: steve Date: Thu, 29 May 2014 10:27:00 -0700 Subject: [PATCH] =?UTF-8?q?Disable=20automatic=20ennoblement=20of=20hostio?= =?UTF-8?q?cache=20This=20can=20cause=20behavior=20that=20requires=20re=20?= =?UTF-8?q?stat=E2=80=99ing=20files=20to=20for=20the=20guest=20to=20realiz?= =?UTF-8?q?e=20they=20have=20changed.=20Prevents=20manually=20dialing=20th?= =?UTF-8?q?is=20option.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugins/providers/virtualbox/action/sane_defaults.rb | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/plugins/providers/virtualbox/action/sane_defaults.rb b/plugins/providers/virtualbox/action/sane_defaults.rb index 36f5d5e8d..6bed761df 100644 --- a/plugins/providers/virtualbox/action/sane_defaults.rb +++ b/plugins/providers/virtualbox/action/sane_defaults.rb @@ -14,17 +14,6 @@ module VagrantPlugins # helpers. @env = env - # Enable the host IO cache on the sata controller. Note that - # if this fails then its not a big deal, so we don't raise any - # errors. The Host IO cache vastly improves disk IO performance - # for VMs. - command = [ - "storagectl", env[:machine].id, - "--name", "SATA Controller", - "--hostiocache", "on" - ] - attempt_and_log(command, "Enabling the Host I/O cache on the SATA controller...") - # Use rtcuseutc so that the VM sees UTC time. command = ["modifyvm", env[:machine].id, "--rtcuseutc", "on"] attempt_and_log(command, "Enabling rtcuseutc...")