mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
Refactor get_nixos() to add create_vm() compatibility
This commit is contained in:
parent
68609f11e8
commit
5483823651
1 changed files with 3 additions and 8 deletions
11
quickget
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…
Add table
Add a link
Reference in a new issue