providers/docker: don't use HGFS on VMware fusion [GH-3687]

This commit is contained in:
Mitchell Hashimoto 2014-05-08 10:05:59 -07:00
parent 4e52facebc
commit 9a8a0499c7
2 changed files with 9 additions and 0 deletions

View File

@ -11,6 +11,7 @@ BUG FIXES:
- core: Hostnames can be one character. [GH-3713]
- core: Don't lock machines on SSH actions. [GH-3664]
- providers/docker: default proxy VM won't use HGFS [GH-3687]
## 1.6.1 (May 7, 2014)

View File

@ -8,6 +8,14 @@ Vagrant.configure("2") do |config|
v.functional_vboxsf = false
end
["vmware_fusion", "vmware_workstation"].each do |vmware|
config.vm.provider vmware do |v|
if v.respond_to?(:functional_hgfs=)
v.functional_hgfs = false
end
end
end
# b2d doesn't support NFS
config.nfs.functional = false
end