mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
Refactor Void Linux support to add editions
This commit is contained in:
parent
6e92a8e0d9
commit
8924d5cac4
1 changed files with 15 additions and 7 deletions
22
quickget
22
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}"
|
||||
|
|
Loading…
Reference in a new issue