antix update
This commit is contained in:
parent
a2dc73df94
commit
1486422d2d
|
|
@ -7,7 +7,7 @@ HOMEPAGE="https://antixlinux.com"
|
||||||
CREDENTIALS="-"
|
CREDENTIALS="-"
|
||||||
|
|
||||||
function releases_() {
|
function releases_() {
|
||||||
echo 23.1 23 22 21
|
echo 23.2 23.1 23 22 21
|
||||||
}
|
}
|
||||||
|
|
||||||
function editions_() {
|
function editions_() {
|
||||||
|
|
@ -15,6 +15,11 @@ function editions_() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function get_() {
|
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
|
# antiX uses a different URL and ISO naming for runit editions
|
||||||
if [[ "${EDITION}" == *"runit"* ]];then
|
if [[ "${EDITION}" == *"runit"* ]];then
|
||||||
ISO+="-runit"
|
ISO+="-runit"
|
||||||
|
|
@ -30,5 +35,6 @@ function get_() {
|
||||||
full-*) ISO+="_x64-full.iso";;
|
full-*) ISO+="_x64-full.iso";;
|
||||||
net-*) ISO+="-net_x64-net.iso";;
|
net-*) ISO+="-net_x64-net.iso";;
|
||||||
esac
|
esac
|
||||||
|
HASH=$(web_pipe "${URL}/${README}.txt" | grep "${ISO}" | cut -d' ' -f1 | head -n 1)
|
||||||
echo "${URL}/${ISO} ${HASH}"
|
echo "${URL}/${ISO} ${HASH}"
|
||||||
}
|
}
|
||||||
|
|
@ -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"
|
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"
|
HOMEPAGE="https://antixlinux.com"
|
||||||
CREDENTIALS="-"
|
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"
|
EDITIONS="net-sysv net-runit full-sysv full-runit core-sysv core-runit base-sysv base-runit"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue