-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.sh
48 lines (35 loc) · 1.26 KB
/
setup.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/bin/bash
# Exit immediately on failure
set -eu
# Are we running in bash?
# Single bracket to be posix compliant in case we run in sh or something
if [ -z ${BASH} ]; then
echo "This script must be run from the Bash shell!"
exit 1
fi
# Are we root? Because we shouldn't be.
if [[ $EUID -eq 0 ]]; then
echo "This script should be run as a normal user, not root."
exit 2
fi
PATH_TO_SCRIPT=$(dirname $(readlink -f $0))
echo "************************************"
echo "* Installing pip *"
echo "************************************"
curl -s https://bootstrap.pypa.io/get-pip.py -o /tmp/get-pip.py
python3 /tmp/get-pip.py --user --no-warn-script-location
export PATH=$PATH:~/.local/bin
echo "************************************"
echo "* Installing ansible *"
echo "************************************"
pip install ansible
echo "************************************"
echo "* Running Golden Kali Playbook *"
echo "************************************"
echo
echo "Please enter your password to configure system:"
ansible-playbook ${PATH_TO_SCRIPT}/main.yml --ask-become-pass
echo "***********************************"
echo "* Done! *"
echo "***********************************"
echo "You should reboot your system now."