From 5b9edb2b8b01bf02bd88087216fe7ba458578d97 Mon Sep 17 00:00:00 2001 From: Fabio Rehm Date: Tue, 11 Jun 2013 20:23:46 -0300 Subject: [PATCH] Mention NFS support on readme --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 3cecbc9..67b503b 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,8 @@ from within your `Vagrantfile`: Vagrant.configure("2") do |config| config.vm.box = 'your-box' config.cache.auto_detect = true + # If you are using VirtualBox, you might want to enable NFS for shared folders + # config.cache.enable_nfs = true end ```