Refactor get_ghostbsd() to add create_vm() compatibility

pull/388/head
Martin Wimpress 3 years ago
parent 0ea2d1b3aa
commit c36463d85d
No known key found for this signature in database
GPG Key ID: 61DF940515E06DA3
  1. 10
      quickget

@ -833,19 +833,15 @@ function get_gentoo() {
function get_ghostbsd() {
local EDITION="${1:-}"
local ISO=""
local URL=""
local URL="https://download.ghostbsd.org/releases/amd64/${RELEASE}"
local HASH=""
case ${EDITION} in
mate) ISO="GhostBSD-${RELEASE}.iso";;
xfce) ISO="GhostBSD-${RELEASE}-XFCE.iso";;
esac
URL="https://download.ghostbsd.org/releases/amd64/${RELEASE}"
HASH=$(wget -q -O- "${URL}/${ISO}.sha256" | grep "${ISO}" | cut -d' ' -f3)
web_get "${URL}/${ISO}" "${VM_PATH}"
check_hash "${ISO}" "${HASH}"
make_vm_config "${ISO}"
HASH=$(wget -q -O- "${URL}/${ISO}.sha256" | grep "${ISO}" | cut -d' ' -f4)
echo "${URL}/${ISO} ${HASH}"
}
function get_haiku() {

Loading…
Cancel
Save