From 8c5b84a2d1a315ce3d1d6c4ff64de4727869b8cc Mon Sep 17 00:00:00 2001 From: David Galloway Date: Mon, 27 Oct 2025 09:09:39 -0400 Subject: [PATCH] build_container: RELEASE=9, not RELEASE=stream9. Accept both. Signed-off-by: David Galloway --- scripts/build_container | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/build_container b/scripts/build_container index 4f8ff948f..b7e839e67 100755 --- a/scripts/build_container +++ b/scripts/build_container @@ -39,9 +39,9 @@ if [[ $CI_CONTAINER == "true" && $DISTRO == "centos" && "$RELEASE" =~ 8|9 ]] ; t [[ -d ./dist/ceph/container ]] && cd ./dist/ceph/container || cd dist/ceph-${cephver}/container from_image_spec="${DISTRO}:${RELEASE}" case "${from_image_spec}" in - "centos:stream9") FROM_IMAGE=quay.io/centos/centos:stream9 ;; - "rocky:10") FROM_IMAGE=docker.io/rockylinux/rockylinux:10 ;; - *) echo "Don't know requested FROM image ${from_image_spec}"; exit 1 ;; + "centos:9"|"centos:stream9") FROM_IMAGE=quay.io/centos/centos:stream9 ;; + "rocky:10") FROM_IMAGE=docker.io/rockylinux/rockylinux:10 ;; + *) echo "Don't know requested FROM image ${from_image_spec}"; exit 1 ;; esac FROM_IMAGE=${FROM_IMAGE} CEPH_SHA1=${SHA1} ./build.sh fi -- 2.47.3