DistroHopper/OS/oraclelinux
zen0bit c087af2323 tmp
2024-04-10 21:20:44 +02:00

20 lines
No EOL
839 B
Text

INFO="Oracle Linux|RedHat||https://www.oracle.com/linux/|Linux with everything required to deploy, optimize, and manage applications on-premises, in the cloud, and at the edge.";;
function releases_oraclelinux() {
echo 9.0 8.6 8.5 8.4 7.9 7.8 7.7
}
function get_oraclelinux() {
local HASH=""
local ISO=""
local VER_MAJ=${RELEASE::1}
local VER_MIN=${RELEASE:2:1}
local URL="https://yum.oracle.com/ISOS/OracleLinux/OL${VER_MAJ}/u${VER_MIN}/x86_64/"
case ${VER_MAJ} in
7) ISO="OracleLinux-R${VER_MAJ}-U${VER_MIN}-Server-x86_64-dvd.iso";;
*) ISO="OracleLinux-R${VER_MAJ}-U${VER_MIN}-x86_64-dvd.iso";;
esac
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_1)
echo "${URL}/${ISO} ${HASH}"
}