Check that username is not in the banned list

This commit is contained in:
Blade of Darkness 2020-05-26 20:13:08 +02:00
parent 334f222e3d
commit ba830c97ec
3 changed files with 3 additions and 0 deletions

View File

@ -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

View File

@ -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

1
setenv
View File

@ -11,3 +11,4 @@ export LIST_NAME="thunix-join@lists.tildeverse.org"
export EMAIL_TEMPLATE="include/email.tmpl"
export TILDE_JSON="/var/www/thunix.cf/tilde.json"
export YAML_FILE="$1.yml"
export BANNED="/root/users.banned"