Refactor Void Linux support to add editions

This commit is contained in:
Martin Wimpress 2022-02-21 15:24:25 +00:00
parent 6e92a8e0d9
commit 8924d5cac4
No known key found for this signature in database
GPG Key ID: 61DF940515E06DA3
1 changed files with 15 additions and 7 deletions

View File

@ -455,9 +455,13 @@ function releases_ubuntu() {
}
function releases_void() {
echo base \
echo current
}
function editions_void() {
echo glibc \
musl \
xfce \
xfce-glibc \
xfce-musl
}
@ -1081,16 +1085,20 @@ function get_openbsd() {
function get_void() {
local DATE=""
local EDITION=""
local HASH=""
local ISO=""
local URL="https://alpha.de.repo.voidlinux.org/live/current"
DATE=$(wget -q -O- "${URL}/sha256sum.txt" | head -n1 | cut -d'.' -f1 | cut -d'-' -f4)
case ${RELEASE} in
base) ISO="void-live-x86_64-${DATE}.iso";;
musl) ISO="void-live-x86_64-musl-${DATE}.iso";;
xfce) ISO="void-live-x86_64-${DATE}-xfce.iso";;
xfce-musl) ISO="void-live-x86_64-musl-${DATE}-xfce.iso";;
if [ -n "${1}" ]; then
EDITION="${1}"
fi
case ${EDITION} in
glibc) ISO="void-live-x86_64-${DATE}.iso";;
musl) ISO="void-live-x86_64-musl-${DATE}.iso";;
xfce-glibc) ISO="void-live-x86_64-${DATE}-xfce.iso";;
xfce-musl) ISO="void-live-x86_64-musl-${DATE}-xfce.iso";;
esac
HASH="$(wget -q -O- "${URL}/sha256sum.txt" | grep "${ISO}" | cut -d' ' -f4)"
web_get "${URL}/${ISO}" "${VM_PATH}"