diff --git a/makeuser b/makeuser index 4595676..f7dc00f 100755 --- a/makeuser +++ b/makeuser @@ -15,6 +15,7 @@ CONFIG=./setenv source include/functions [[ $(id -u) == 0 ]] && error_exit "Do not run this script as root." +[[ $# -ne 3 ]] && error_exit "not enough args" case $1 in -h | --help) @@ -22,7 +23,6 @@ case $1 in -* | --*) usage; error_exit "unknown option $1" ;; *) - [[ $# -ne 3 ]] && error_exit "not enough args" $(sudo grep -qiw $1 $BANNED) && error_exit "$1 is on the ban list!" #adding new user diff --git a/makeuser_no_ansible b/makeuser_no_ansible index 1a15647..9a03931 100755 --- a/makeuser_no_ansible +++ b/makeuser_no_ansible @@ -14,6 +14,7 @@ CONFIG=./setenv source include/functions [[ $(id -u) == 0 ]] && error_exit "Do not run this script as root." +[[ $# -ne 3 ]] && error_exit "not enough args" case $1 in -h | --help) @@ -21,7 +22,6 @@ case $1 in -* | --*) usage; error_exit "unknown option $1" ;; *) - [[ $# -ne 3 ]] && error_exit "not enough args" $(sudo grep -qiw $1 $BANNED) && error_exit "$1 is on the ban list!" #adding new user