]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
qa/tasks/keystone: restart mariadb for rocky and alma linux too 67123/head
authorKyr Shatskyy <kyrylo.shatskyy@clyso.com>
Fri, 16 Jan 2026 13:13:21 +0000 (14:13 +0100)
committerKyr Shatskyy <kyrylo.shatskyy@clyso.com>
Thu, 19 Feb 2026 21:03:36 +0000 (22:03 +0100)
Fixes: https://tracker.ceph.com/issues/74653
Signed-off-by: Kyr Shatskyy <kyrylo.shatskyy@clyso.com>
qa/tasks/keystone.py

index bffeeeae1811316385218ad53868e0b7ef63ca52..2a55213d2b6c4787e715fbb51dedfa0ec3cfb0d4 100644 (file)
@@ -163,7 +163,7 @@ def setup_database(ctx, config):
 
         # MariaDB on RHEL/CentOS needs service started after package install
         # while Ubuntu starts service by default.
-        if remote.os.name == 'rhel' or remote.os.name == 'centos':
+        if remote.os.name in ('rhel', 'centos', 'alma', 'rocky'):
             remote.run(args=['sudo', 'systemctl', 'restart', 'mariadb'])
 
         run_mysql_query(ctx, remote, "CREATE USER 'keystone'@'localhost' IDENTIFIED BY 'SECRET';")