Move config to..

This commit is contained in:
zenobit 2025-02-18 03:40:12 +01:00
parent 475e1f4899
commit 06efe8b79d
2 changed files with 5 additions and 3 deletions

View File

@ -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}"
}

View File

@ -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";;