mirror of
https://github.com/ThunixdotNet/makeuser.git
synced 2026-01-24 13:40:17 +00:00
Check that username is not in the banned list
This commit is contained in:
1
makeuser
1
makeuser
@@ -23,6 +23,7 @@ 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
|
||||
makeuser_no_ansible $1 $2
|
||||
|
||||
@@ -22,6 +22,7 @@ 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
|
||||
makeuser_no_ansible $1 $2
|
||||
|
||||
Reference in New Issue
Block a user