Update quickget

This commit is contained in:
TenTypekMatus 2022-12-29 11:46:17 +01:00 committed by Martin Wimpress
parent e64f54ad52
commit d2a7eff80e

View file

@ -67,6 +67,7 @@ function pretty_name() {
ubuntu-unity) PRETTY_NAME="Ubuntu Unity";; ubuntu-unity) PRETTY_NAME="Ubuntu Unity";;
void) PRETTY_NAME="Void Linux";; void) PRETTY_NAME="Void Linux";;
zorin) PRETTY_NAME="Zorin OS";; zorin) PRETTY_NAME="Zorin OS";;
truenas) PRETTY_NAME="TrueNAS";;
*) PRETTY_NAME="${SIMPLE_NAME^}";; *) PRETTY_NAME="${SIMPLE_NAME^}";;
esac esac
echo "${PRETTY_NAME}" echo "${PRETTY_NAME}"
@ -204,6 +205,7 @@ function os_support() {
slackware \ slackware \
solus \ solus \
tails \ tails \
truenas \
ubuntu \ ubuntu \
ubuntu-budgie \ ubuntu-budgie \
ubuntukylin \ ubuntukylin \
@ -480,6 +482,14 @@ function releases_tails() {
echo stable echo stable
} }
function editions_truenas() {
echo core scale # enterprise is proprietary and paid
}
function releases_truenas() {
}
function releases_ubuntu() { function releases_ubuntu() {
local LTS_SUPPORT="14.04 16.04 18.04 20.04 22.04" local LTS_SUPPORT="14.04 16.04 18.04 20.04 22.04"
local INTERIM_SUPPORT="22.10" local INTERIM_SUPPORT="22.10"