File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
# script-wizard
2
- A fully automated installer script template
2
+ A fully automated installer for python scripts
Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ SHORTPROGRAMNAME=""
12
12
echo " Welcome to the $PROGRAMNAME installer
13
13
14
14
By using this software you must agree all below terms:
15
- 1) Usage of this tools for attacking targets without prior mutual consent is illegal .
16
- 2) By using this software, it's the end user’s responsibility to obey all applicable local, state and federal laws .
15
+ 1) By using this software, it's the end user’s responsibility to obey all applicable local, state and federal laws .
16
+ 2) The software is provided \" as is \" , without warranty of any kind, express or implied .
17
17
3) $DEVELOPERNAME isn't responsible for any damage caused by this software.
18
18
19
19
[?] If you agree, press [Enter] to procede:"
@@ -22,7 +22,7 @@ read junk
22
22
# TODO: Implement non-APT environment installation
23
23
if [ $( dpkg-query -W -f=' ${Status}' python3 > /dev/null 2>&1 | grep -c " ok installed" ) -eq 0 ]; then
24
24
# Python3 not installed on the system, just install it!
25
- echo " [*] Installing python interpreter on the system..."
25
+ echo " [*] Installing python interpreter on the system..."
26
26
apt update > /dev/null 2>&1 ;
27
27
apt install python3 > /dev/null 2>&1 ;
28
28
fi
You can’t perform that action at this time.
0 commit comments