summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Fedele <dan.fedele@gmail.com>2020-04-16 15:10:07 -0400
committerGitHub <noreply@github.com>2020-04-16 15:10:07 -0400
commit86b03032e2a57e69f9d1b979f2c03afe36d8138b (patch)
tree87788e15fadfd811a1ce1a702e689c5d1e596287
parent88489a0cfe58bf85db2404071fe77d23878ad9d9 (diff)
fixed script locations from relative to absolute
-rw-r--r--setup-kali.sh8
1 files 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."