From 86b03032e2a57e69f9d1b979f2c03afe36d8138b Mon Sep 17 00:00:00 2001 From: Dan Fedele Date: Thu, 16 Apr 2020 15:10:07 -0400 Subject: fixed script locations from relative to absolute --- setup-kali.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup-kali.sh b/setup-kali.sh index b72ec2f..945b370 100644 --- a/setup-kali.sh +++ b/setup-kali.sh @@ -9,7 +9,7 @@ echo "***********************************" echo "* Installing pip *" echo "***********************************" -curl -s https://bootstrap.pypa.io/get-pip.py -o get-pip.py +curl -s https://bootstrap.pypa.io/get-pip.py -o /tmp/get-pip.py python3 get-pip.py --user export PATH=$PATH:/root/.local/bin @@ -24,7 +24,7 @@ echo "***********************************" echo "* Running Kali playbook *" echo "***********************************" -curl -s http://raw.githubusercontent.com/AgroDan/FreshInstall/master/kali.yml -o kali.yml +curl -s http://raw.githubusercontent.com/AgroDan/FreshInstall/master/kali.yml -o /tmp/kali.yml ansible-playbook ./kali.yml @@ -32,10 +32,10 @@ echo "***********************************" echo "* Cleaning up *" echo "***********************************" -rm -f ./get-pip.py ./kali.yml +rm -f /tmp/get-pip.py /tmp/kali.yml echo "***********************************" echo "* Done! *" echo "***********************************" -echo "You should be set up. Check above for any errors." \ No newline at end of file +echo "You should be set up. Check above for any errors." -- cgit v1.2.3