From 65b78eb8a42b1ce121c1cfdc90857d924a72ea38 Mon Sep 17 00:00:00 2001 From: Phil Clifford Date: Sat, 19 Feb 2022 11:47:10 +0000 Subject: [PATCH] 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. --- quickget | 6 ------ 1 file changed, 6 deletions(-) diff --git a/quickget b/quickget index 82de2ea..974d725 100755 --- a/quickget +++ b/quickget @@ -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