Oracle Linux 9.0 added (#513)

* chore: docs submodule

* Oracle Linux Release 9.0 added

also removed some early obsoleted 8.x releases
This commit is contained in:
Phil Clifford 2022-08-01 09:14:53 +01:00 committed by GitHub
parent b7e1fba117
commit 45722ac1f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -422,7 +422,7 @@ function releases_opensuse(){
}
function releases_oraclelinux() {
echo 7.7 7.8 7.9 8.2 8.3 8.4 8.5
echo 7.7 7.8 7.9 8.4 8.5 8.6 9.0
}
function releases_popos() {
@ -1285,8 +1285,8 @@ function get_oraclelinux() {
local URL="https://yum.oracle.com/ISOS/OracleLinux/OL${VER_MAJ}/u${VER_MIN}/x86_64/"
case ${VER_MAJ} in
8) ISO="OracleLinux-R${VER_MAJ}-U${VER_MIN}-x86_64-dvd.iso";;
*) ISO="OracleLinux-R${VER_MAJ}-U${VER_MIN}-Server-x86_64-dvd.iso";;
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 -d' ' -f1)
echo "${URL}/${ISO} ${HASH}"