Skip to content
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

Open
ioExpander opened this issue May 1, 2016 · 3 comments
Open

Add missing packages on guest system : libffi-dev libssl-dev #13

ioExpander opened this issue May 1, 2016 · 3 comments

Comments

@ioExpander
Copy link

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.

@dxiao2003
Copy link

+1
This didn't happen before, just started occuring last few days. Maybe because ansible changed their dependencies? Anyway right now am manually installing the packages but would be nice to have them automatically installed.

jehartzog added a commit to jehartzog/vagrant-guest_ansible that referenced this issue May 3, 2016
Additional dependencies added are libffi-dev and libssl-dev.
@megane42
Copy link

megane42 commented May 9, 2016

+1
Same with CentOS 7.
Adding libffi-devel openssl-devel to guest_script.sh (line 21) may solve this problem.

@kleiram
Copy link

kleiram commented May 12, 2016

It might also be possible to use the shell provisioner before running the guest_ansible provisioner, like so:

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 

ZoranPavlovic added a commit to ZoranPavlovic/vagrant-guest_ansible that referenced this issue Dec 25, 2017
Fixes vovimayhem#13 by adding missing dependencies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants