diff --git a/actions/openbsd b/actions/openbsd index ac60346..9b09acf 100644 --- a/actions/openbsd +++ b/actions/openbsd @@ -5,6 +5,7 @@ BASEDOF="-" HOMEPAGE="https://www.openbsd.org" DESCRIPTION="Free, multi-platform 4.4BSD-based UNIX-like operating system. Our efforts emphasize portability, standardization, correctness, proactive security and integrated cryptography" CREDENTIALS="-" +GUEST="openbsd" function releases_() { #shellcheck disable=SC2046,SC2005 @@ -18,3 +19,7 @@ function get_() { HASH=$(web_pipe "${URL}/SHA256" | grep "${ISO}" | cut -d' ' -f4) echo "${URL}/${ISO} ${HASH}" } + +function specific_tweaks() { + echo "boot=\"legacy\"" >> "${CONF_FILE}" +} diff --git a/quickget b/quickget index b8e3664..08abb2e 100755 --- a/quickget +++ b/quickget @@ -573,9 +573,6 @@ function make_vm_config() { custom) GUEST="${CUSTOM_OS}" IMAGE_TYPE="${CUSTOM_IMAGE_TYPE}";; - openbsd) - GUEST="openbsd" - IMAGE_TYPE="iso";; *) GUEST="linux" IMAGE_TYPE="iso";;