fix(coreos-base/oem-vagrant): disable VMware's hgfs

Suggested in https://github.com/coreos/coreos-vagrant/pull/127
This commit is contained in:
Michael Marineau 2014-06-11 17:45:45 -07:00
parent 32ad96fc9b
commit 015746fd5e
2 changed files with 4 additions and 0 deletions

View File

@ -24,4 +24,8 @@ Vagrant.configure("2") do |config|
vb.customize ["modifyvm", :id, "--natdnshostresolver1", "on"]
vb.customize ["modifyvm", :id, "--natdnsproxy1", "on"]
end
config.vm.provider :vmware_fusion do |vf|
vf.functional_hgfs = false
end
end