Merge pull request #2400 from hikch/master

guests/freebsd: fix nfs mount fail with FreeBSD9.1 (synced_folder).
This commit is contained in:
Mitchell Hashimoto 2013-10-23 23:15:33 -07:00
commit 2ca350c816
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ module VagrantPlugins
def self.mount_nfs_folder(machine, ip, folders)
folders.each do |name, opts|
machine.communicate.sudo("mkdir -p #{opts[:guestpath]}")
machine.communicate.sudo("mount '#{ip}:#{opts[:hostpath]}' '#{opts[:guestpath]}'")
machine.communicate.sudo("mount -t nfs '#{ip}:#{opts[:hostpath]}' '#{opts[:guestpath]}'")
end
end
end