Skip to content

Commit

Permalink
Wget as dependency (#20)
Browse files Browse the repository at this point in the history
Replacing wget with curl as it is commonly installed.
  • Loading branch information
slicedevca authored Mar 29, 2018
1 parent f24254c commit 805993b
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 @@ -28,9 +28,9 @@ if ! command -v ansible >/dev/null; then
exit 1
fi
echo "Installing pip via get-pip."
wget https://bootstrap.pypa.io/get-pip.py
curl --silent --show-error https://bootstrap.pypa.io/get-pip.py -O
sudo python get-pip.py && rm -f get-pip.py
# Make sure setuptools are installed crrectly.
# Make sure setuptools are installed correctly.
sudo pip install setuptools --no-use-wheel --upgrade
echo "Installing required python modules."
sudo pip install paramiko pyyaml jinja2 markupsafe
Expand Down

0 comments on commit 805993b

Please sign in to comment.