Reduce future pain (#358)

* Removed big list of itemised defaults

There are list() functions and docs  - spelling out the list of
OS options here just adds work and maintenance overhead.

* Removed misleading chatter

Already took out the incorrect phrasing.  With most now
being default the output is over-noisy and probably unhelpful.
This commit is contained in:
Phil Clifford 2022-02-19 11:47:10 +00:00 committed by GitHub
parent 87c9cdb690
commit 65b78eb8a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 6 deletions

View File

@ -646,11 +646,6 @@ function make_vm_config() {
IMAGE_FILE="${1}"
ISO_FILE="${2}"
case "${OS}" in
alma | android | archlinux | debian | elementary | fedora | kali | \
garuda | kdeneon | linuxmint* | nixos* | opensuse | oraclelinux | \
popos | regolith | rockylinux | solus | *ubuntu* | zorin )
GUEST="linux"
IMAGE_TYPE="iso";;
freebsd )
GUEST="freebsd"
IMAGE_TYPE="iso";;
@ -670,7 +665,6 @@ function make_vm_config() {
GUEST="windows"
IMAGE_TYPE="iso";;
*)
echo "Undefined OS Defaulting to Guest=Linux and IMAGE_TYPE=iso"
GUEST="linux"
IMAGE_TYPE="iso";;
esac