Refactor get_debian()
This commit is contained in:
parent
a1f02e6b3a
commit
dc5cc54af5
19
quickget
19
quickget
@ -841,27 +841,24 @@ function get_cachyos() {
|
|||||||
|
|
||||||
function get_debian() {
|
function get_debian() {
|
||||||
local HASH=""
|
local HASH=""
|
||||||
|
local HASHLINE=""
|
||||||
local ISO=""
|
local ISO=""
|
||||||
local URL=""
|
local URL=""
|
||||||
local HASHLINE=""
|
|
||||||
local FREEDOM=""
|
|
||||||
|
|
||||||
|
|
||||||
validate_release "releases_debian"
|
validate_release "releases_debian"
|
||||||
|
|
||||||
if [ "${1}" == "nonfree" ]; then
|
if [ "${1}" == "nonfree" ]; then
|
||||||
RELEASE="${RELEASE}+nonfree"
|
RELEASE="${RELEASE}+nonfree"
|
||||||
fi
|
fi
|
||||||
case $RELEASE in
|
|
||||||
*+nonfree) URL="http://cdimage.debian.org/cdimage/unofficial/non-free/cd-including-firmware/current-live/amd64/iso-hybrid" ;;
|
case ${RELEASE} in
|
||||||
*) URL="https://cdimage.debian.org/debian-cd/current-live/amd64/iso-hybrid";;
|
*+nonfree) URL="http://cdimage.debian.org/cdimage/unofficial/non-free/cd-including-firmware/current-live/amd64/iso-hybrid";;
|
||||||
|
*) URL="https://cdimage.debian.org/debian-cd/current-live/amd64/iso-hybrid";;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
HASHLINE=$(wget -q -O- "${URL}/SHA512SUMS" | grep "${RELEASE}.iso")
|
||||||
HASHLINE=$(wget -q -O- ${URL}/SHA512SUMS |grep ${RELEASE}.iso)
|
ISO="$(echo "${HASHLINE}" | awk '{print $NF}')"
|
||||||
ISO="$(echo ${HASHLINE} | awk '{print $NF}' )"
|
HASH=$(echo "${HASHLINE}" | cut -d'\' -f1)
|
||||||
HASH=$(echo ${HASHLINE} | cut -d\ -f1)
|
|
||||||
|
|
||||||
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 New Issue
Block a user