Skip to content

Commit

Permalink
Update commandchk
Browse files Browse the repository at this point in the history
  • Loading branch information
InfoSecREDD authored Dec 11, 2023
1 parent 4307cf4 commit 4690b50
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/commandchk
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ do_help() {
echo -e " ./netup enablemods - Enables all Modules in the Modules Folder."
echo -e " ./netup disablemods - Disables all Modules in the Modules Folder."
echo -e " ./netup updatemods - Sync's all Modules with Public Repo."
echo -e " ./netup enabledevmods - Enables all Modules in the Modules Folder."
echo -e " ./netup disabledevmods - Disables all Modules in the Modules Folder."
echo -e " ./netup updatedevmods - Sync's all Modules with Public Repo."
echo -e " ./netup autostart [on/off] - Turns on/off crontab for NET-UP.";
echo -e " ./netup autoreboot [on/off] - Turns on/off AUTOREBOOT for NET-UP.";
echo -e " ./netup autoexit [on/off] - Turns on/off AUTOEXIT for NET-UP.";
Expand Down Expand Up @@ -53,6 +56,9 @@ if [[ $1 = "help" ]]; then
echo -e " ./netup enablemods - Enables all Modules in the Modules Folder."
echo -e " ./netup disablemods - Disables all Modules in the Modules Folder."
echo -e " ./netup updatemods - Sync's all Modules with Public Repo."
echo -e " ./netup enabledevmods - Enables all Modules in the Modules Folder."
echo -e " ./netup disabledevmods - Disables all Modules in the Modules Folder."
echo -e " ./netup updatedevmods - Sync's all Modules with Public Repo."
echo -e " ./netup autostart [on/off] - Turns on/off crontab for NET-UP.";
echo -e " ./netup autoreboot [on/off] - Turns on/off AUTOREBOOT for NET-UP.";
echo -e " ./netup autoexit [on/off] - Turns on/off AUTOEXIT for NET-UP.";
Expand All @@ -69,6 +75,7 @@ if [[ $1 != ""
&& $1 != "update"
&& $1 != "enable"
&& $1 != "enablemods"
&& $1 != "enabledevmods"
&& $1 != "autostart"
&& $1 != "list"
&& $1 != "listmods"
Expand All @@ -78,8 +85,10 @@ if [[ $1 != ""
&& $1 != "disable"
&& $1 != "autoreboot"
&& $1 != "disablemods"
&& $1 != "disabledevmods"
&& $1 != "run"
&& $1 != "updatemods"
&& $1 != "updatedevmods"
&& $1 != "autoexit"
&& $1 != "console"
&& $1 != "help" ]]; then
Expand Down

0 comments on commit 4690b50

Please sign in to comment.