From 92ef3f0f2e79bd7e286289e88c38ab8ae687af0b Mon Sep 17 00:00:00 2001 From: Clemens Schwaighofer Date: Mon, 21 Aug 2023 09:38:00 +0900 Subject: [PATCH] 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. --- bin/create_user.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/create_user.sh b/bin/create_user.sh index 4586cef..1593e22 100755 --- a/bin/create_user.sh +++ b/bin/create_user.sh @@ -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)