From ba5c318276050f609263d2b7c76894d1adcba90f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Slavi=C5=A1a=20Are=C5=BEina?= <58952836+tremor021@users.noreply.github.com> Date: Wed, 13 Aug 2025 14:28:50 +0200 Subject: [PATCH] GLPI: Fix timezone command (#6783) * FIx timezone command * Update glpi-install.sh --- install/glpi-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/glpi-install.sh b/install/glpi-install.sh index 25b0d7d7e..23564153f 100644 --- a/install/glpi-install.sh +++ b/install/glpi-install.sh @@ -28,7 +28,7 @@ msg_info "Setting up database" DB_NAME=glpi_db DB_USER=glpi DB_PASS=$(openssl rand -base64 18 | tr -dc 'a-zA-Z0-9' | head -c13) -mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql mysql +mariadb-tzinfo-to-sql /usr/share/zoneinfo | mariadb mysql $STD mariadb -u root -e "CREATE DATABASE $DB_NAME;" $STD mariadb -u root -e "CREATE USER '$DB_USER'@'localhost' IDENTIFIED BY '$DB_PASS';" $STD mariadb -u root -e "GRANT ALL PRIVILEGES ON $DB_NAME.* TO '$DB_USER'@'localhost';"