From: NitzanMordhai Date: Wed, 28 Jan 2026 10:32:11 +0000 (+0000) Subject: qa/workunits/ceph-helpers-root: Add Rocky support for install packages X-Git-Tag: testing/wip-pdonnell-testing-20260502.020637-tentacle~1^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=68f621a64dec857429a882a740edb177bfcac246;p=ceph-ci.git qa/workunits/ceph-helpers-root: Add Rocky support for install 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 (cherry picked from commit a6cf895c8c552e925a638d925ebc1cda10e678d5) --- 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)