From 8924d5cac4c831c2045a915d9ea16c748cfb3ae6 Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Mon, 21 Feb 2022 15:24:25 +0000 Subject: [PATCH] Refactor Void Linux support to add editions --- quickget | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/quickget b/quickget index 799f767..9f6dd34 100755 --- a/quickget +++ b/quickget @@ -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}"