From 805993b4ee311c8e0480e130bd14ea412c5308e6 Mon Sep 17 00:00:00 2001 From: slicedevca Date: Thu, 29 Mar 2018 17:42:20 -0400 Subject: [PATCH] Wget as dependency (#20) Replacing wget with curl as it is commonly installed. --- lib/vagrant-guest_ansible/guest_script.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/vagrant-guest_ansible/guest_script.sh b/lib/vagrant-guest_ansible/guest_script.sh index defe707..673993d 100644 --- a/lib/vagrant-guest_ansible/guest_script.sh +++ b/lib/vagrant-guest_ansible/guest_script.sh @@ -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