From: NitzanMordhai Date: Wed, 28 Jan 2026 10:32:11 +0000 (+0000) Subject: qa/workunits/ceph-helpers-root: Add Rocky support for intall packages X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=660eda5fa6898da366b8ea2702a37a8ae8b19d19;p=ceph-ci.git qa/workunits/ceph-helpers-root: Add Rocky support for intall packages Add Rocky Linux to the list of supported RPM-based distributions in ceph-helpers-root.sh Without this change, tests that use install or install_one functions will fail to install on Rocky Linux sysems with "is unknown" errors. Fixes: https://tracker.ceph.com/issues/74568 Signed-off-by: Nitzan Mordechai --- diff --git a/qa/workunits/ceph-helpers-root.sh b/qa/workunits/ceph-helpers-root.sh index 5b5d2b409ee..9cf8c6d6193 100755 --- a/qa/workunits/ceph-helpers-root.sh +++ b/qa/workunits/ceph-helpers-root.sh @@ -50,7 +50,7 @@ function install_one() { ubuntu|debian|devuan|softiron) sudo env DEBIAN_FRONTEND=noninteractive apt-get install -y "$@" ;; - centos|fedora|rhel) + centos|fedora|rhel|rocky) sudo yum install -y "$@" ;; opensuse*|suse|sles)