From 41e98c97d6bfc0f629ac3a2dbbb9c3b069eef7ba Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Tue, 8 Feb 2011 22:29:32 -0800 Subject: [PATCH] Fix issue with "mount_nfs_fail" translation missing --- lib/vagrant/systems/linux.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant/systems/linux.rb b/lib/vagrant/systems/linux.rb index 765f3e21c..48c7fb79e 100644 --- a/lib/vagrant/systems/linux.rb +++ b/lib/vagrant/systems/linux.rb @@ -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