-
Notifications
You must be signed in to change notification settings - Fork 87
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add "nokogiri" as a runtime dependency #298
Conversation
I didn't had any problems installing
But as soon as I do a
Installing the
The default cert file points to an invalid location:
So the workaround is to install Vagrant 1.9.4 until this issue is fixed… |
This is happening to me, on a clean system (macOS Sierra 10.12.5), starting from scratch:
|
@moxley Currently the easiest solution is downgrading Vagrant to 1.9.4. You can download it here: Then |
@legal90: Thanks, that worked! |
Thanks! |
This PR fixes #297
In Vagrant 1.9.5 there was "nokogiri" gem removed from the Vagrant bundle: hashicorp/vagrant#8571
So now we should specify it as a dependency of
vagrant-parallels
gem if we want to use it.NB! After that PR is merged & released, it will cause a crash of plugin upgrade/installation with Vagrant 1.9.5, similar to this hashicorp/vagrant#8594
To work it around we need to define a special env variable while installing the plugin:
Hopefully, this trick will not be needed for future versions of Vagrant (after 1.9.5), since it was fixed in the Vagrant installer: hashicorp/vagrant-installers#104