File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11# 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=""
1212echo " Welcome to the $PROGRAMNAME installer
1313
1414By 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 .
1717 3) $DEVELOPERNAME isn't responsible for any damage caused by this software.
1818
1919[?] If you agree, press [Enter] to procede:"
@@ -22,7 +22,7 @@ read junk
2222# TODO: Implement non-APT environment installation
2323if [ $( dpkg-query -W -f=' ${Status}' python3 > /dev/null 2>&1 | grep -c " ok installed" ) -eq 0 ]; then
2424 # 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..."
2626 apt update > /dev/null 2>&1 ;
2727 apt install python3 > /dev/null 2>&1 ;
2828fi
You can’t perform that action at this time.
0 commit comments