Skip to content
This repository has been archived by the owner on May 28, 2024. It is now read-only.

Commit

Permalink
test: fix CUT_DIRS for nightly compose URL and updates compose URL
Browse files Browse the repository at this point in the history
Signed-off-by: Xiaofeng Wang <[email protected]>
  • Loading branch information
henrywang committed May 14, 2024
1 parent 3aef6a1 commit 5c50c58
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion anaconda.sh
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,12 @@ case "$REDHAT_ID" in
BOOT_LOCATION="http://${DOWNLOAD_NODE}/rhel-9/nightly/${BATCH_COMPOSE}RHEL-9/${CURRENT_COMPOSE_ID}/compose/BaseOS/${ARCH}/os/"
OS_VARIANT="rhel9-unknown"
BOOT_ARGS="uefi"
CUT_DIRS=8
# BATCH_COMPOSE will be "" or "updates/"
if [[ "$BATCH_COMPOSE" == "" ]]; then
CUT_DIRS=8
else
CUT_DIRS=9
fi
;;
"centos")
# work with old TEST_OS variable value centos-stream-9
Expand Down

0 comments on commit 5c50c58

Please sign in to comment.