From 58e23031433d783d6c169402e05eeda13f6a2e4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Hozza?= Date: Fri, 19 Jul 2024 10:18:20 +0200 Subject: [PATCH] define-compose-url.sh: use download.devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use mirror-agnostic URL for composes. Signed-off-by: Tomáš Hozza --- tools/define-compose-url.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/define-compose-url.sh b/tools/define-compose-url.sh index 966b11721f..d22b23f7ef 100755 --- a/tools/define-compose-url.sh +++ b/tools/define-compose-url.sh @@ -8,10 +8,10 @@ if [[ $ID != rhel ]]; then fi if [[ $ID == rhel && ${VERSION_ID%.*} == 9 ]]; then - COMPOSE_ID=$(curl -L http://download.eng.bos.redhat.com/rhel-9/nightly/RHEL-9/latest-RHEL-"${VERSION_ID}"/COMPOSE_ID) + COMPOSE_ID=$(curl -L http://download.devel.redhat.com/rhel-9/nightly/RHEL-9/latest-RHEL-"${VERSION_ID}"/COMPOSE_ID) # default to a nightly tree but respect values passed from ENV so we can test rel-eng composes as well - COMPOSE_URL="${COMPOSE_URL:-http://download.eng.bos.redhat.com/rhel-9/nightly/RHEL-9/$COMPOSE_ID}" + COMPOSE_URL="${COMPOSE_URL:-http://download.devel.redhat.com/rhel-9/nightly/RHEL-9/$COMPOSE_ID}" fi # in case COMPOSE_URL was defined from the outside refresh COMPOSE_ID file,