* Sat Apr 06 2024 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-4.sme

- fix permission [SME: 12596]
- fix horde.mysql_set_password [SME: 12593]
This commit is contained in:
2024-04-07 23:56:21 -04:00
parent 119589ed73
commit a14668272e
3 changed files with 11 additions and 9 deletions

View File

@@ -0,0 +1,3 @@
UID="root"
GID="root"
PERMS=0400

View File

@@ -1,11 +1,6 @@
CONNECT mysql;
REPLACE INTO user (host, user, password)
VALUES (
'localhost',
'horde',
password('{$horde{DbPassword}}')
);
CREATE USER IF NOT EXISTS horde@localhost IDENTIFIED VIA mysql_native_password USING PASSWORD("{$horde{DbPassword}}") ;
GRANT ALL PRIVILEGES ON horde.* TO horde@localhost ;
SET PASSWORD FOR horde@localhost = PASSWORD("{$horde{DbPassword}}");
FLUSH PRIVILEGES;