providers/docker: don't use HGFS on VMware fusion [GH-3687]
This commit is contained in:
parent
4e52facebc
commit
9a8a0499c7
|
@ -11,6 +11,7 @@ BUG FIXES:
|
||||||
|
|
||||||
- core: Hostnames can be one character. [GH-3713]
|
- core: Hostnames can be one character. [GH-3713]
|
||||||
- core: Don't lock machines on SSH actions. [GH-3664]
|
- 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)
|
## 1.6.1 (May 7, 2014)
|
||||||
|
|
||||||
|
|
|
@ -8,6 +8,14 @@ Vagrant.configure("2") do |config|
|
||||||
v.functional_vboxsf = false
|
v.functional_vboxsf = false
|
||||||
end
|
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
|
# b2d doesn't support NFS
|
||||||
config.nfs.functional = false
|
config.nfs.functional = false
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue