mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
Update latest Rocky to 9.0 release (#506)
also reflect changed name for dvd iso
This commit is contained in:
parent
cfadfde2b7
commit
b540471acc
1 changed files with 4 additions and 3 deletions
7
quickget
7
quickget
|
@ -442,12 +442,13 @@ function editions_regolith() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function releases_rockylinux() {
|
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() {
|
function editions_rockylinux() {
|
||||||
echo minimal \
|
echo minimal \
|
||||||
dvd1
|
"dvd (dvd1 prior to 9.0)"
|
||||||
}
|
}
|
||||||
|
|
||||||
function releases_slackware() {
|
function releases_slackware() {
|
||||||
|
@ -1307,7 +1308,7 @@ function get_rockylinux() {
|
||||||
local URL=""
|
local URL=""
|
||||||
|
|
||||||
case ${RELEASE} in
|
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/";;
|
*) URL="http://dl.rockylinux.org/vault/rocky/${RELEASE}/isos/x86_64/";;
|
||||||
esac
|
esac
|
||||||
HASH=$(wget -q -O- "${URL}/CHECKSUM" | grep "SHA256" | grep "${ISO})" | cut -d' ' -f4)
|
HASH=$(wget -q -O- "${URL}/CHECKSUM" | grep "SHA256" | grep "${ISO})" | cut -d' ' -f4)
|
||||||
|
|
Loading…
Reference in a new issue