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
Firmato da: deblan
ID Chiave GPG: 03383D15A1D31745
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni

Vedi File

@ -63,7 +63,7 @@ if [ "$PHP_ENABLED" = "yes" ]; then
exit_if_empty "$PHP_VERSION" "Aborded! (PHP_VERSION_EMPTY)"
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_GROUP="webgroup"