Fix issue with "mount_nfs_fail" translation missing

This commit is contained in:
Mitchell Hashimoto 2011-02-08 22:29:32 -08:00
parent 34a3102325
commit 41e98c97d6
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ module Vagrant
folders.each do |name, opts|
vm.ssh.execute do |ssh|
ssh.exec!("sudo mkdir -p #{opts[:guestpath]}")
ssh.exec!("sudo mount #{ip}:'#{opts[:hostpath]}' #{opts[:guestpath]}", :error_class => LinuxError, :_key => :mount_nfs_fail)
ssh.exec!("sudo mount #{ip}:'#{opts[:hostpath]}' #{opts[:guestpath]}", :_error_class => LinuxError, :_key => :mount_nfs_fail)
end
end
end