Skip to content

Commit

Permalink
Merge pull request #1 from jehartzog/master
Browse files Browse the repository at this point in the history
Fixes vovimayhem#13 by adding missing dependencies
  • Loading branch information
ZoranPavlovic authored Dec 25, 2017
2 parents eb0ebfb + 8571084 commit 94839a8
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 @@ -21,11 +21,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 94839a8

Please sign in to comment.