Disable automatic ennoblement of hostiocache

This can cause behavior that requires re stat’ing
files to for the guest to realize they have
changed. Prevents manually dialing this option.
This commit is contained in:
steve 2014-05-29 10:27:00 -07:00
parent 91ba97f1df
commit 9444e2dc43
1 changed files with 0 additions and 11 deletions

View File

@ -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...")