Move config to..
This commit is contained in:
parent
475e1f4899
commit
06efe8b79d
|
|
@ -5,6 +5,7 @@ BASEDOF="-"
|
||||||
HOMEPAGE="https://www.openbsd.org"
|
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"
|
DESCRIPTION="Free, multi-platform 4.4BSD-based UNIX-like operating system. Our efforts emphasize portability, standardization, correctness, proactive security and integrated cryptography"
|
||||||
CREDENTIALS="-"
|
CREDENTIALS="-"
|
||||||
|
GUEST="openbsd"
|
||||||
|
|
||||||
function releases_() {
|
function releases_() {
|
||||||
#shellcheck disable=SC2046,SC2005
|
#shellcheck disable=SC2046,SC2005
|
||||||
|
|
@ -18,3 +19,7 @@ function get_() {
|
||||||
HASH=$(web_pipe "${URL}/SHA256" | grep "${ISO}" | cut -d' ' -f4)
|
HASH=$(web_pipe "${URL}/SHA256" | grep "${ISO}" | cut -d' ' -f4)
|
||||||
echo "${URL}/${ISO} ${HASH}"
|
echo "${URL}/${ISO} ${HASH}"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function specific_tweaks() {
|
||||||
|
echo "boot=\"legacy\"" >> "${CONF_FILE}"
|
||||||
|
}
|
||||||
|
|
|
||||||
3
quickget
3
quickget
|
|
@ -573,9 +573,6 @@ function make_vm_config() {
|
||||||
custom)
|
custom)
|
||||||
GUEST="${CUSTOM_OS}"
|
GUEST="${CUSTOM_OS}"
|
||||||
IMAGE_TYPE="${CUSTOM_IMAGE_TYPE}";;
|
IMAGE_TYPE="${CUSTOM_IMAGE_TYPE}";;
|
||||||
openbsd)
|
|
||||||
GUEST="openbsd"
|
|
||||||
IMAGE_TYPE="iso";;
|
|
||||||
*)
|
*)
|
||||||
GUEST="linux"
|
GUEST="linux"
|
||||||
IMAGE_TYPE="iso";;
|
IMAGE_TYPE="iso";;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue