Update calls to check_hash()
This commit is contained in:
parent
ef94ff64ff
commit
31a089d465
8
quickget
8
quickget
@ -18,7 +18,7 @@
|
|||||||
# web_get "${URL}" "${VM_PATH}"
|
# web_get "${URL}" "${VM_PATH}"
|
||||||
# web_get "${URL}/SHA256SUMS" "${VM_PATH}"
|
# web_get "${URL}/SHA256SUMS" "${VM_PATH}"
|
||||||
# HASH=$(cat "${VM_PATH}/SHA256SUMS" | cut -d' ' -f1)
|
# HASH=$(cat "${VM_PATH}/SHA256SUMS" | cut -d' ' -f1)
|
||||||
# check_hash "${VM_PATH}/${ISO}" "${HASH}" sha256sum
|
# check_hash "${ISO}" "${HASH}"
|
||||||
# make_vm_config "${ISO}"
|
# make_vm_config "${ISO}"
|
||||||
# }
|
# }
|
||||||
# 6. Add new OS to the argument parser at the bottom of the script
|
# 6. Add new OS to the argument parser at the bottom of the script
|
||||||
@ -584,7 +584,7 @@ function get_fedora() {
|
|||||||
URL=$(echo "${FEDORA_RELEASE}" | jq -r '.link')
|
URL=$(echo "${FEDORA_RELEASE}" | jq -r '.link')
|
||||||
HASH=$(echo "${FEDORA_RELEASE}" | jq -r '.sha256')
|
HASH=$(echo "${FEDORA_RELEASE}" | jq -r '.sha256')
|
||||||
web_get "${URL}" "${VM_PATH}"
|
web_get "${URL}" "${VM_PATH}"
|
||||||
check_hash "${VM_PATH}/${ISO}" "${HASH}" sha256sum
|
check_hash "${ISO}" "${HASH}"
|
||||||
make_vm_config "${ISO}"
|
make_vm_config "${ISO}"
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -732,7 +732,7 @@ function get_ubuntu() {
|
|||||||
make_vm_config "${OS}-${RELEASE}.iso"
|
make_vm_config "${OS}-${RELEASE}.iso"
|
||||||
else
|
else
|
||||||
web_get "${URL}/${ISO}" "${VM_PATH}"
|
web_get "${URL}/${ISO}" "${VM_PATH}"
|
||||||
check_hash "${VM_PATH}/${ISO}" "${HASH}" sha256sum
|
check_hash "${ISO}" "${HASH}"
|
||||||
make_vm_config "${ISO}"
|
make_vm_config "${ISO}"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
@ -780,7 +780,7 @@ function get_windows() {
|
|||||||
|
|
||||||
# Windows 10 doesn't include a SHA1, so only check the integrity if the SHA1 is available.
|
# Windows 10 doesn't include a SHA1, so only check the integrity if the SHA1 is available.
|
||||||
if [ -n "${DOWNLOAD_SHA1}" ]; then
|
if [ -n "${DOWNLOAD_SHA1}" ]; then
|
||||||
check_hash "${VM_PATH}/${FILE_NAME}" "${DOWNLOAD_SHA1}" sha1sum
|
check_hash "${FILE_NAME}" "${DOWNLOAD_SHA1}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
web_get "https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/stable-virtio/virtio-win.iso" "${VM_PATH}"
|
web_get "https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/stable-virtio/virtio-win.iso" "${VM_PATH}"
|
||||||
|
Loading…
Reference in New Issue
Block a user