The length of the generated password has been increased (#10)

This commit is contained in:
Sergei Solovev 2024-11-25 01:09:50 +03:00 committed by GitHub
parent 3942ea6105
commit 8e4d79ca84
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -168,10 +168,10 @@ if $foundOs; then
fi
done
passPma=$(pwgen -1 8)
passPma="$(pwgen -1Bs 12)"
dbSql="torrentpier_$(pwgen -1 8)"
userSql="torrentpier_$(pwgen -1 8)"
passSql=$(pwgen -1 8)
passSql="$(pwgen -1Bs 12)"
# Installation phpMyAdmin
if ! dpkg-query -W -f='${Status}' "phpmyadmin" 2>/dev/null | grep -q "install ok installed"; then