Browse Source
fix(vh): log a message when the password is not set or to short (#3738)
pull/3740/head
Christian
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
8 additions and
0 deletions
-
lgsm/functions/check_config.sh
|
|
@ -25,3 +25,11 @@ elif [ -v rconpassword ]&&[ "${rconpassword}" == "CHANGE_ME" ]; then |
|
|
|
fn_print_warn_nl "Default RCON Password detected" |
|
|
|
fn_script_log_warn "Default RCON Password detected" |
|
|
|
fi |
|
|
|
|
|
|
|
if [ "${shortname}" == "vh" ]&&[ -z "${serverpassword}" ]; then |
|
|
|
fn_print_fail_nl "serverpassword is not set" |
|
|
|
fn_script_log_fatal "serverpassword is not set" |
|
|
|
elif [ "${shortname}" == "vh" ]&&[ "${#serverpassword}" -le "4" ]; then |
|
|
|
fn_print_fail_nl "serverpassword is to short (min 5 chars)" |
|
|
|
fn_script_log_fatal "serverpassword is to short (min 5 chars)" |
|
|
|
fi |
|
|
|