The GO flag for create_user was default 1 instead of 0

Script must be run with -g flag but for that the GO flag must be default
0.
This commit is contained in:
Clemens Schwaighofer
2023-08-21 09:38:00 +09:00
parent f181ee74e3
commit 92ef3f0f2e

View File

@@ -27,7 +27,7 @@
# SET TO 1 to TEST [will not create user/group/folder]
TEST=0; # no actions will be run
INFO=0; # no creation of anything, just print info strings
GO=1; # without this flag the script will exit with an info box
GO=0; # without this flag the script will exit with an info box
while getopts ":gtih:" opt; do
case "${opt}" in
g|go)