mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
Refactor Arco Linux support releases and editions
This commit is contained in:
parent
96287f369e
commit
dabdfa49cc
1 changed files with 16 additions and 6 deletions
22
quickget
22
quickget
|
@ -239,7 +239,14 @@ function releases_archlinux() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function releases_arcolinux() {
|
function releases_arcolinux() {
|
||||||
echo latest
|
echo v21.09.11 \
|
||||||
|
v21.11.05 \
|
||||||
|
v22.01.10
|
||||||
|
}
|
||||||
|
|
||||||
|
function editions_arcolinux() {
|
||||||
|
echo large \
|
||||||
|
small
|
||||||
}
|
}
|
||||||
|
|
||||||
function releases_cachyos() {
|
function releases_cachyos() {
|
||||||
|
@ -796,15 +803,18 @@ function get_archlinux() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function get_arcolinux() {
|
function get_arcolinux() {
|
||||||
|
local EDITION=""
|
||||||
local HASH=""
|
local HASH=""
|
||||||
local ISO=""
|
local ISO=""
|
||||||
local URL=""
|
local URL=""
|
||||||
local VERSION=""
|
|
||||||
|
|
||||||
URL="https://ant.seedhost.eu/arcolinux/.quick/"
|
if [ -n "${1}" ]; then
|
||||||
VERSION=$(wget -q -O- "${URL}/info" | cut -d' ' -f 2)
|
EDITION="${1:0:1}"
|
||||||
ISO="arcolinuxl-${VERSION}-x86_64.iso"
|
fi
|
||||||
HASH=$(wget -q -O- "${URL}/arcolinuxl-${VERSION}-x86_64.iso.sha1" | cut -d' ' -f 1)
|
|
||||||
|
URL="https://ant.seedhost.eu/arcolinux/iso/${RELEASE}"
|
||||||
|
ISO="arcolinux${EDITION}-${RELEASE}-x86_64.iso"
|
||||||
|
HASH=$(wget -q -O- "${URL}/${ISO}.sha1" | cut -d' ' -f 1)
|
||||||
web_get "${URL}/${ISO}" "${VM_PATH}"
|
web_get "${URL}/${ISO}" "${VM_PATH}"
|
||||||
check_hash "${ISO}" "${HASH}"
|
check_hash "${ISO}" "${HASH}"
|
||||||
make_vm_config "${ISO}"
|
make_vm_config "${ISO}"
|
||||||
|
|
Loading…
Reference in a new issue