Refactor get_nixos() to add create_vm() compatibility

This commit is contained in:
Martin Wimpress 2022-02-23 10:52:45 +00:00
parent 68609f11e8
commit 5483823651
No known key found for this signature in database
GPG Key ID: 61DF940515E06DA3

View File

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