Skip to content

Commit

Permalink
Fixes vovimayhem#13 by adding missing dependencies
Browse files Browse the repository at this point in the history
Additional dependencies added are libffi-dev and libssl-dev.
  • Loading branch information
jehartzog committed May 3, 2016
1 parent 73a2f11 commit 8571084
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/vagrant-guest_ansible/guest_script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ fi
if ! command -v ansible >/dev/null; then
echo "Installing Ansible dependencies and Git."
if command -v yum >/dev/null; then
sudo yum install -y gcc git python python-devel
sudo yum install -y gcc git python python-devel libffi-dev libssl-dev
elif command -v apt-get >/dev/null; then
sudo apt-get update -qq
#sudo apt-get install -y -qq git python-yaml python-paramiko python-jinja2
sudo apt-get install -y -qq git python python-dev
sudo apt-get install -y -qq git python python-dev libffi-dev libssl-dev
else
echo "neither yum nor apt-get found!"
exit 1
Expand Down

0 comments on commit 8571084

Please sign in to comment.