From 7975c52e81bb3062831615be9d0ce94e2b074281 Mon Sep 17 00:00:00 2001 From: John Mulligan Date: Mon, 16 Jun 2025 14:38:00 -0400 Subject: [PATCH] buildcontainer-setup.sh: allow testing with various ELish bases Allow testing with more RPM-based/EL style distros. Simplify the centos selection as centos8 ought to always be matched by the earlier block. Signed-off-by: John Mulligan --- src/script/buildcontainer-setup.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/script/buildcontainer-setup.sh b/src/script/buildcontainer-setup.sh index c263ef44a79a0..9964ed3241d56 100644 --- a/src/script/buildcontainer-setup.sh +++ b/src/script/buildcontainer-setup.sh @@ -36,7 +36,8 @@ case "${CEPH_BASE_BRANCH}~${DISTRO_KIND}" in install_container_deps dnf_clean ;; - *~*centos*9|*~*centos*10*|*~fedora*) + # EL-ish, 9+ + *~*centos*|*~fedora*|*~rocky*|*~alma*) dnf install -y /usr/bin/{rpmbuild,wget,curl} install_container_deps dnf_clean -- 2.39.5