mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
Attempt to get gentoo
Some tweaks towards getting the latest release iso
This commit is contained in:
parent
7c48090b18
commit
ae6f2f9d17
1 changed files with 19 additions and 11 deletions
30
quickget
30
quickget
|
@ -127,6 +127,8 @@ function list_csv() {
|
||||||
DOWNLOADER="${DL}"
|
DOWNLOADER="${DL}"
|
||||||
elif [ "${OS}" == "garuda" ]; then
|
elif [ "${OS}" == "garuda" ]; then
|
||||||
DOWNLOADER="${DL}"
|
DOWNLOADER="${DL}"
|
||||||
|
elif [ "${OS}" == "gentoo" ]; then
|
||||||
|
DOWNLOADER="${DL}"
|
||||||
elif [[ "${OS}" == *"kdeneon"* ]]; then
|
elif [[ "${OS}" == *"kdeneon"* ]]; then
|
||||||
DOWNLOADER="${DL}"
|
DOWNLOADER="${DL}"
|
||||||
else
|
else
|
||||||
|
@ -876,18 +878,24 @@ function get_fedora() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function get_gentoo() {
|
function get_gentoo() {
|
||||||
local HASH=""
|
local HASH=""
|
||||||
local ISO=""
|
local ISO=""
|
||||||
local URL=""
|
local URL=""
|
||||||
|
local LOCAT=""
|
||||||
|
local INSTALLMIN=""
|
||||||
|
|
||||||
validate_release "releases_gentoo"
|
validate_release "releases_gentoo"
|
||||||
ISO="gentoo-${RELEASE}-amd64.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}' )
|
||||||
URL="https://www.gentoo.org/download/${ISO}"
|
LOCAT=$(dirname ${LOCAT})
|
||||||
web_get "${URL}" "${VM_PATH}"
|
eval $( awk '/admincd-amd64/ {print "ADMIN="$1}; /install-amd64-minimal/ {print "INSTALLMIN="$1}' /tmp/gentoolatest )
|
||||||
web_get "${URL}/SHA256SUMS" "${VM_PATH}"
|
URL="${LOCAT}/${INSTALLMIN}"
|
||||||
HASH=$(cat "${VM_PATH}/SHA256SUMS" | cut -d' ' -f1)
|
ISO=$(basename "${INSTALLMIN}" )
|
||||||
check_hash "${ISO}" "${HASH}"
|
|
||||||
make_vm_config "${ISO}"
|
|
||||||
|
web_get "${URL}" "${VM_PATH}"
|
||||||
|
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}"
|
||||||
}
|
}
|
||||||
|
|
||||||
function get_kali() {
|
function get_kali() {
|
||||||
|
|
Loading…
Reference in a new issue