From 0adcc1c63c4cee9ca313acd7ec084980dfc40b23 Mon Sep 17 00:00:00 2001 From: CS Zhang Date: Tue, 12 Dec 2023 11:32:00 -0600 Subject: [PATCH] Use CURL to download ISO file --- sno/assisted-sno.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sno/assisted-sno.sh b/sno/assisted-sno.sh index 865b025..f06649d 100755 --- a/sno/assisted-sno.sh +++ b/sno/assisted-sno.sh @@ -100,7 +100,7 @@ EOF download_iso() { echo "Downloading ISO ${ISO_URL} ..." - wget --quiet -O ${CONFIG_DIR}/assisted.iso ${ISO_URL} + curl ${ISO_URL} -o ${CONFIG_DIR}/assisted.iso if [[ -f "${CONFIG_DIR}/assisted.iso" ]]; then echo "Extract pxe files from ISO"