Merge pull request #1 from philclifford/help-guyosi

Attempt to get gentoo
pull/255/head
guyosi 3 years ago committed by GitHub
commit ca6fac8c7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 16
      quickget

@ -127,6 +127,8 @@ function list_csv() {
DOWNLOADER="${DL}"
elif [ "${OS}" == "garuda" ]; then
DOWNLOADER="${DL}"
elif [ "${OS}" == "gentoo" ]; then
DOWNLOADER="${DL}"
elif [[ "${OS}" == *"kdeneon"* ]]; then
DOWNLOADER="${DL}"
else
@ -879,13 +881,19 @@ function get_gentoo() {
local HASH=""
local ISO=""
local URL=""
local LOCAT=""
local INSTALLMIN=""
validate_release "releases_gentoo"
ISO="gentoo-${RELEASE}-amd64.iso"
URL="https://www.gentoo.org/download/${ISO}"
eval $( wget -O/tmp/gentoolatest https://bouncer.gentoo.org/fetch/root/all/releases/amd64/autobuilds/${RELEASE}-iso.txt 2>&1 |grep Location | awk '{print "LOCAT="$2}' )
LOCAT=$(dirname ${LOCAT})
eval $( awk '/admincd-amd64/ {print "ADMIN="$1}; /install-amd64-minimal/ {print "INSTALLMIN="$1}' /tmp/gentoolatest )
URL="${LOCAT}/${INSTALLMIN}"
ISO=$(basename "${INSTALLMIN}" )
web_get "${URL}" "${VM_PATH}"
web_get "${URL}/SHA256SUMS" "${VM_PATH}"
HASH=$(cat "${VM_PATH}/SHA256SUMS" | cut -d' ' -f1)
HASH=$(wget -q -O- ${LOCAT}/${INSTALLMIN}.DIGESTS|grep -e iso|grep -v -e CONT -e catalyst|cut -d\ -f1)
check_hash "${ISO}" "${HASH}"
make_vm_config "${ISO}"
}

Loading…
Cancel
Save