MariaDB CLI Update, Go Install Helper & Minor Cleanup (#4793)

* .

* switch mysql to mariadb

* fix some basenames

* remove basename to correct filename

* merge firefly from main
This commit is contained in:
CanbiZ
2025-05-28 14:45:53 +02:00
committed by GitHub
parent 7bb9fb09ba
commit 5e8ee6baa8
105 changed files with 166 additions and 193 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
mysql -u "$sqluser" -p"$sqlpass" -e "source sql/user.sql" || true
mariadb -u "$sqluser" -p"$sqlpass" -e "source sql/user.sql" || true
msg_ok "Installed Database"
msg_info "Installing Shinobi"