MySQL/MariaDB: fix create user with password (#4918)

* MySQL/MariaDB: Fix Authentification with password

* add apache guac

* harmonize $STD value
This commit is contained in:
CanbiZ
2025-06-02 13:11:41 +02:00
committed by GitHub
parent 824fd22aae
commit b4a58b907f
19 changed files with 37 additions and 37 deletions

View File

@ -43,7 +43,7 @@ sqlpass="root"
echo "mariadb-server mariadb-server/root_password password $sqlpass" | debconf-set-selections
echo "mariadb-server mariadb-server/root_password_again password $sqlpass" | debconf-set-selections
service mysql start
mariadb -u "$sqluser" -p"$sqlpass" -e "source sql/user.sql" || true
$STD mariadb -u "$sqluser" -p"$sqlpass" -e "source sql/user.sql" || true
msg_ok "Installed Database"
msg_info "Installing Shinobi"