Refactor get_nixos() to add create_vm() compatibility

pull/388/head
Martin Wimpress 3 years ago
parent 68609f11e8
commit 5483823651
No known key found for this signature in database
GPG Key ID: 61DF940515E06DA3
  1. 11
      quickget

@ -1009,15 +1009,10 @@ function get_netbsd() {
function get_nixos() { function get_nixos() {
local EDITION="${1:-}" local EDITION="${1:-}"
local HASH="" local HASH=""
local ISO="" local ISO="latest-nixos-${EDITION}-x86_64-linux.iso"
local URL="" local URL="https://channels.nixos.org/nixos-${RELEASE}"
URL="https://channels.nixos.org/nixos-${RELEASE}"
ISO="latest-nixos-${EDITION}-x86_64-linux.iso"
HASH=$(wget -q -O- "${URL}/${ISO}.sha256" | cut -d' ' -f1) HASH=$(wget -q -O- "${URL}/${ISO}.sha256" | cut -d' ' -f1)
web_get "${URL}/${ISO}" "${VM_PATH}" echo "${URL}/${ISO} ${HASH}"
check_hash "${ISO}" "${HASH}"
make_vm_config "${ISO}"
} }
function get_openbsd() { function get_openbsd() {

Loading…
Cancel
Save