Do not ignore NFS shared folders, just share them

This commit is contained in:
Fabio Rehm 2013-04-10 00:48:13 -03:00
parent 116bde9655
commit 0ce7629859

View file

@ -18,9 +18,6 @@ module Vagrant
def shared_folders
{}.tap do |result|
@env[:machine].config.vm.synced_folders.each do |id, data|
# Ignore NFS shared folders
next if data[:nfs]
# This to prevent overwriting the actual shared folders data
result[id] = data.dup
end