From cc671a4f6219ab9f6dc3242b94a91c3c348ee8a4 Mon Sep 17 00:00:00 2001 From: Kyr Shatskyy Date: Fri, 16 Jan 2026 14:13:21 +0100 Subject: [PATCH] qa/tasks/keystone: restart mariadb for rocky and alma linux too Fixes: https://tracker.ceph.com/issues/74653 Signed-off-by: Kyr Shatskyy --- qa/tasks/keystone.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/tasks/keystone.py b/qa/tasks/keystone.py index bffeeeae181..2a55213d2b6 100644 --- a/qa/tasks/keystone.py +++ b/qa/tasks/keystone.py @@ -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';") -- 2.47.3