From e8131693e70ecc5d497bf6e88d4a35c781fc868e Mon Sep 17 00:00:00 2001 From: zenobit Date: Tue, 18 Feb 2025 03:39:07 +0100 Subject: [PATCH] Move config to.. --- actions/openindiana | 6 ++++++ quickget | 6 ------ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/actions/openindiana b/actions/openindiana index 85a4a3e..4468cc4 100644 --- a/actions/openindiana +++ b/actions/openindiana @@ -5,6 +5,7 @@ BASEDOF="Solaris OPenSolaris" HOMEPAGE="https://www.openindiana.org" DESCRIPTION="Community supported illumos-based operating system" CREDENTIALS="-" +GUEST="solaris" function releases_() { #shellcheck disable=SC2046,SC2005 @@ -24,3 +25,8 @@ function get_() { HASH=$(web_pipe "${URL}/${ISO}.sha256" |cut -d' ' -f1) echo "${URL}/${ISO} ${HASH}" } + +function specific_tweaks() { + echo "boot=\"legacy\"" >> "${CONF_FILE}" + echo "disk_size=\"32G\"" >> "${CONF_FILE}" +} diff --git a/quickget b/quickget index f5e9132..2e2fd5e 100755 --- a/quickget +++ b/quickget @@ -579,9 +579,6 @@ function make_vm_config() { openbsd) GUEST="openbsd" IMAGE_TYPE="iso";; - openindiana) - GUEST="solaris" - IMAGE_TYPE="iso";; *) GUEST="linux" IMAGE_TYPE="iso";; @@ -607,9 +604,6 @@ EOF case ${OS} in alma|athenaos|centos-stream|endless|garuda|gentoo|kali|nixos|oraclelinux|popos|rockylinux) echo "disk_size=\"32G\"" >> "${CONF_FILE}";; - openindiana) - echo "boot=\"legacy\"" >> "${CONF_FILE}" - echo "disk_size=\"32G\"" >> "${CONF_FILE}";; dragonflybsd|haiku|openbsd|netbsd|slackware|slax|tails|tinycore) echo "boot=\"legacy\"" >> "${CONF_FILE}";; proxmox-ve)