add chars in the password generator

This commit is contained in:
Simon Vieille 2019-07-31 14:14:55 +02:00
parent e38781f509
commit faeb8492b7
Signed by: deblan
GPG Key ID: 03383D15A1D31745
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ if [ "$PHP_ENABLED" = "yes" ]; then
exit_if_empty "$PHP_VERSION" "Aborded! (PHP_VERSION_EMPTY)" exit_if_empty "$PHP_VERSION" "Aborded! (PHP_VERSION_EMPTY)"
fi fi
USER_PASSWORD="$(tr -dc "0123456789!@#$%()[]*@abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" < /dev/urandom | head -c 20)" USER_PASSWORD="$(tr -dc "0123456789!@#$%()[]*@<>abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" < /dev/urandom | head -c 20)"
SYSTEM_USER_USERNAME="$(form_input -t "$TITLE" -l "System username" -d "web" -r)" SYSTEM_USER_USERNAME="$(form_input -t "$TITLE" -l "System username" -d "web" -r)"
SYSTEM_USER_GROUP="webgroup" SYSTEM_USER_GROUP="webgroup"