From 1486422d2dd7afea0ee08b5698e42492f2029586 Mon Sep 17 00:00:00 2001 From: zenobit Date: Fri, 14 Feb 2025 01:59:27 +0100 Subject: [PATCH] antix update --- actions/antix | 10 ++++++++-- public/antix | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/actions/antix b/actions/antix index 44c9337..135cce1 100644 --- a/actions/antix +++ b/actions/antix @@ -7,7 +7,7 @@ HOMEPAGE="https://antixlinux.com" CREDENTIALS="-" function releases_() { - echo 23.1 23 22 21 + echo 23.2 23.1 23 22 21 } function editions_() { @@ -15,6 +15,11 @@ function editions_() { } function get_() { + local HASH="" + local ISO="antiX-${RELEASE}" + local README="README" + local URL="https://sourceforge.net/projects/antix-linux/files/Final/antiX-${RELEASE}" + # antiX uses a different URL and ISO naming for runit editions if [[ "${EDITION}" == *"runit"* ]];then ISO+="-runit" @@ -30,5 +35,6 @@ function get_() { full-*) ISO+="_x64-full.iso";; net-*) ISO+="-net_x64-net.iso";; esac + HASH=$(web_pipe "${URL}/${README}.txt" | grep "${ISO}" | cut -d' ' -f1 | head -n 1) echo "${URL}/${ISO} ${HASH}" -} \ No newline at end of file +} diff --git a/public/antix b/public/antix index 72b0034..84eae6d 100644 --- a/public/antix +++ b/public/antix @@ -5,5 +5,5 @@ BASEDOF="Debian" DESCRIPTION="Fast, lightweight and easy to install systemd-free linux live CD distribution based on Debian Stable for Intel-AMD x86 compatible systems" HOMEPAGE="https://antixlinux.com" CREDENTIALS="-" -RELEASES="23.1 23 22 21" +RELEASES="23.2 23.1 23 22 21" EDITIONS="net-sysv net-runit full-sysv full-runit core-sysv core-runit base-sysv base-runit"