-
Notifications
You must be signed in to change notification settings - Fork 29
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 missing packages on guest system : libffi-dev libssl-dev #13
Comments
+1 |
Additional dependencies added are libffi-dev and libssl-dev.
+1 |
It might also be possible to use the config.vm.provision :shell, inline: "sudo apt-get -y install libffi-dev libssl-dev"
config.vm.provision :guest_ansible do |ansible|
# your provisioning configuration
end |
Fixes vovimayhem#13 by adding missing dependencies
Hi.
I've started using this plugin with a base debian jessie64 image and some packages are missing to install Ansible on the guest system : libffi-dev and libssl-dev.
The fix might be pretty simple : just add "libffi-dev libssl-dev" in vagrant-guest_ansible/lib/vagrant-guest_ansible/guest_script.sh (line 25).
Cheers.
The text was updated successfully, but these errors were encountered: