fix(quickget): remove Athena OS (no longer getting updates)
This commit is contained in:
parent
083ae65ae3
commit
7dc93266c9
23
quickget
23
quickget
|
|
@ -27,7 +27,6 @@ function os_info() {
|
|||
archcraft) INFO="Archcraft|-|https://archcraft.io/|Yet another minimal Linux distribution, based on Arch Linux.";;
|
||||
archlinux) INFO="Arch Linux|-|https://archlinux.org/|Lightweight and flexible Linux® distribution that tries to Keep It Simple.";;
|
||||
artixlinux) INFO="Artix Linux|-|https://artixlinux.org/|The Art of Linux. Simple. Fast. Systemd-free.";;
|
||||
athenaos) INFO="Athena OS|-|https://athenaos.org/|Offer a different experience than the most used pentesting distributions by providing only tools that fit with the user needs and improving the access to hacking resources and learning materials.";;
|
||||
batocera) INFO="Batocera|-|https://batocera.org/|Retro-gaming distribution with the aim of turning any computer/nano computer into a gaming console during a game or permanently.";;
|
||||
bazzite) INFO="Bazzite|-|https://github.com/ublue-os/bazzite/|Container native gaming and a ready-to-game SteamOS like.";;
|
||||
biglinux) INFO="BigLinux|-|https://www.biglinux.com.br/|Is the right choice if you want to have an easy and enriching experience with Linux. It has been perfected over more than 19 years, following our motto: 'In search of the perfect system'.";;
|
||||
|
|
@ -424,7 +423,6 @@ function os_support() {
|
|||
archcraft \
|
||||
archlinux \
|
||||
artixlinux \
|
||||
athenaos \
|
||||
batocera \
|
||||
bazzite \
|
||||
biglinux \
|
||||
|
|
@ -568,11 +566,6 @@ function editions_artixlinux() {
|
|||
echo $(web_pipe "https://mirror1.artixlinux.org/iso/" | grep "artix-" | cut -d'"' -f2 | grep -v sig | sed 's/artix-//' | sed 's/-[0-9]\{8\}-x86_64.iso//' | sort -u)
|
||||
}
|
||||
|
||||
function releases_athenaos() {
|
||||
#shellcheck disable=SC2046,SC2005
|
||||
echo $(web_pipe "https://api.github.com/repos/Athena-OS/athena/releases" | grep 'download_url' | grep rolling | cut -d'/' -f8 | sort -u)
|
||||
}
|
||||
|
||||
function releases_batocera() {
|
||||
#shellcheck disable=SC2046,SC2005
|
||||
echo $(web_pipe "https://mirrors.o2switch.fr/batocera/x86_64/stable/" | grep ^\<a | cut -d'"' -f2 | cut -d '/' -f1 | grep -v '\.' | sort -ru | tail -n +2 | head -n 5)
|
||||
|
|
@ -1438,7 +1431,7 @@ EOF
|
|||
|
||||
# OS specific tweaks
|
||||
case ${OS} in
|
||||
alma|athenaos|centos-stream|endless|garuda|gentoo|kali|nixos|oraclelinux|popos|rockylinux)
|
||||
alma|centos-stream|endless|garuda|gentoo|kali|nixos|oraclelinux|popos|rockylinux)
|
||||
echo "disk_size=\"32G\"" >> "${CONF_FILE}";;
|
||||
openindiana)
|
||||
echo "boot=\"legacy\"" >> "${CONF_FILE}"
|
||||
|
|
@ -1630,20 +1623,6 @@ function get_artixlinux() {
|
|||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
function get_athenaos() {
|
||||
local HASH=""
|
||||
local URL="https://github.com/Athena-OS/athena/releases/download/${RELEASE}"
|
||||
local ISO=""
|
||||
# Newer releases (v23.11+) use "athenaos-rolling" naming, older ones use "athena-rolling"
|
||||
if web_check "${URL}/athenaos-rolling-x86_64.iso"; then
|
||||
ISO="athenaos-rolling-x86_64.iso"
|
||||
else
|
||||
ISO="athena-rolling-x86_64.iso"
|
||||
fi
|
||||
HASH=$(web_pipe "${URL}/${ISO}.sha256" | cut -d' ' -f1)
|
||||
echo "${URL}/${ISO} ${HASH}"
|
||||
}
|
||||
|
||||
function get_batocera() {
|
||||
local HASH=""
|
||||
local ISO=""
|
||||
|
|
|
|||
Loading…
Reference in New Issue