mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
Refactor get_oraclelinux()
This commit is contained in:
parent
bed546556a
commit
652eaba6b0
1 changed files with 10 additions and 17 deletions
27
quickget
27
quickget
|
@ -1196,27 +1196,20 @@ function get_oraclelinux() {
|
||||||
local HASH=""
|
local HASH=""
|
||||||
local ISO=""
|
local ISO=""
|
||||||
local URL=""
|
local URL=""
|
||||||
|
local VER_MAJ=""
|
||||||
local arch="x86_64"
|
local VER_MIN=""
|
||||||
|
|
||||||
validate_release "releases_oraclelinux"
|
validate_release "releases_oraclelinux"
|
||||||
|
VER_MAJ=${RELEASE::1}
|
||||||
local majorver=${RELEASE::1}
|
VER_MIN=${RELEASE:2:1}
|
||||||
local minorver=${RELEASE:2:1}
|
URL="https://yum.oracle.com/ISOS/OracleLinux/OL${VER_MAJ}/u${VER_MIN}/x86_64/"
|
||||||
|
if [ "${VER_MAJ}" == "8" ]; then
|
||||||
local baseurl="https://yum.oracle.com/ISOS/OracleLinux/OL${majorver}/u${minorver}/${arch}/"
|
ISO="OracleLinux-R${VER_MAJ}-U${VER_MIN}-x86_64-dvd.iso"
|
||||||
local hashurl="https://linux.oracle.com/security/gpg/checksum/OracleLinux-R${majorver}-U${minorver}-Server-x86_64.checksum"
|
|
||||||
|
|
||||||
if [ "${majorver}" == "8" ]; then
|
|
||||||
ISO="OracleLinux-R${majorver}-U${minorver}-${arch}-dvd.iso"
|
|
||||||
else
|
else
|
||||||
ISO="OracleLinux-R${majorver}-U${minorver}-Server-${arch}-dvd.iso"
|
ISO="OracleLinux-R${VER_MAJ}-U${VER_MIN}-Server-x86_64-dvd.iso"
|
||||||
fi
|
fi
|
||||||
|
HASH=$(wget -q -O- "https://linux.oracle.com/security/gpg/checksum/OracleLinux-R${VER_MAJ}-U${VER_MIN}-Server-x86_64.checksum" | grep "${ISO}" | cut -d' ' -f1)
|
||||||
URL="${baseurl}/${ISO}"
|
web_get "${URL}/${ISO}" "${VM_PATH}"
|
||||||
HASH=$(wget -q -O- "${hashurl}" | grep "${ISO}" | cut -d' ' -f1)
|
|
||||||
|
|
||||||
web_get "${URL}" "${VM_PATH}"
|
|
||||||
check_hash "${ISO}" "${HASH}"
|
check_hash "${ISO}" "${HASH}"
|
||||||
make_vm_config "${ISO}"
|
make_vm_config "${ISO}"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue