From 7cbef9b3d982afc508e2598caaa739b3716220ce Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 21 Apr 2014 20:37:58 -0700 Subject: [PATCH] providers/docker: doesn't support NFS if b2d [GH-3510] --- plugins/providers/docker/hostmachine/Vagrantfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/providers/docker/hostmachine/Vagrantfile b/plugins/providers/docker/hostmachine/Vagrantfile index 38856c3e1..a16342288 100644 --- a/plugins/providers/docker/hostmachine/Vagrantfile +++ b/plugins/providers/docker/hostmachine/Vagrantfile @@ -7,4 +7,7 @@ Vagrant.configure("2") do |config| v.check_guest_additions = false v.functional_vboxsf = false end + + # b2d doesn't support NFS + config.nfs.functional = false end