Created
March 18, 2013 20:19
-
-
Save kixxauth/5190450 to your computer and use it in GitHub Desktop.
Vagrant 1.1.1 error
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[default] Configuring and enabling network interfaces... | |
[default] Mounting shared folders... | |
[default] -- /webapp | |
[default] -- /vagrant | |
[default] Forcing shutdown of VM... | |
[default] Destroying VM and associated drives... | |
/Applications/Vagrant/embedded/gems/gems/vagrant-1.1.1/plugins/providers/virtualbox/action/prepare_nfs_settings.rb:16:in `call': uninitialized constant VagrantPlugins::ProviderVirtualBox::Action::PrepareNFSSettings::Errors (NameError) |
Same, just installed 1.1.1 this evening and getting this problem. Went back to the download site to find and earlier version and there was a 1.1.2 version and the problem is fixed.
I was having the same problem.
I also just encountered this. Looks like it's a small typo in Vagrant. Do the following to fix it:
- Open up
prepare_nfs_settings.rb
in an editor run as root (e.g.,sudo vim prepare_nfs_settings.rb
) - Go to line 16 and replace
Errors::NFSNoHostonlyNetwork
withVagrant::Errors::NFSNoHostonlyNetwork
This issue only occurs if you have NFS on a host only network with no static IP assigned.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Well at least I'm not the only one. Any ideas?