Skip to content

Commit

Permalink
The length of the generated password has been increased (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
SeAnSolovev authored Nov 24, 2024
1 parent 3942ea6 commit 8e4d79c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deb.install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8e4d79c

Please sign in to comment.