Skip to content

Commit

Permalink
chore: Add support for OpenSuse Aeon
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMuso committed Aug 2, 2024
1 parent 885d4a8 commit 891eba3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion quickget
Original file line number Diff line number Diff line change
Expand Up @@ -875,7 +875,7 @@ function editions_openindiana() {

function releases_opensuse() {
#shellcheck disable=SC2046,SC2005
echo $(web_pipe "https://download.opensuse.org/distribution/leap/" | grep 'class="name"' | cut -d '/' -f2 | grep -v 42 | sort -r) microos tumbleweed
echo $(web_pipe "https://download.opensuse.org/distribution/leap/" | grep 'class="name"' | cut -d '/' -f2 | grep -v 42 | sort -r) aeon microos tumbleweed
}

function releases_oraclelinux() {
Expand Down Expand Up @@ -2204,6 +2204,9 @@ function get_opensuse() {
elif [ "${RELEASE}" == "microos" ]; then
ISO="openSUSE-MicroOS-DVD-x86_64-Current.iso"
URL="https://download.opensuse.org/tumbleweed/iso"
elif [ "${RELEASE}" == "aeon" ]; then
ISO="opensuse-aeon.x86_64.iso"
URL="https://mirrorcache-au.opensuse.org/tumbleweed/appliances/iso"
elif [ "${RELEASE}" == 15.0 ] || [ "${RELEASE}" == 15.1 ]; then
ISO="openSUSE-Leap-${RELEASE}-DVD-x86_64.iso"
URL="https://download.opensuse.org/distribution/leap/${RELEASE}/iso"
Expand Down

0 comments on commit 891eba3

Please sign in to comment.