From b540471acc8171b2de9bdd4e0296a07868159176 Mon Sep 17 00:00:00 2001 From: Phil Clifford Date: Sun, 24 Jul 2022 01:21:41 +0100 Subject: [PATCH] Update latest Rocky to 9.0 release (#506) also reflect changed name for dvd iso --- quickget | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/quickget b/quickget index 2447e9b..5101f59 100755 --- a/quickget +++ b/quickget @@ -442,12 +442,13 @@ function editions_regolith() { } function releases_rockylinux() { - echo 8.3 8.4 8.5 + echo 8.3 8.4 8.5 9.0 } +# Rocky have renamed dvd1 -> dvd at 9.0 function editions_rockylinux() { echo minimal \ - dvd1 + "dvd (dvd1 prior to 9.0)" } function releases_slackware() { @@ -1307,7 +1308,7 @@ function get_rockylinux() { local URL="" case ${RELEASE} in - 8.5) URL="https://download.rockylinux.org/pub/rocky/${RELEASE}/isos/x86_64";; + 9.0) URL="https://download.rockylinux.org/pub/rocky/${RELEASE}/isos/x86_64";; *) URL="http://dl.rockylinux.org/vault/rocky/${RELEASE}/isos/x86_64/";; esac HASH=$(wget -q -O- "${URL}/CHECKSUM" | grep "SHA256" | grep "${ISO})" | cut -d' ' -f4)