mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
Add TUXEDO OS
This commit is contained in:
parent
2d2b99ecf5
commit
38fec19191
1 changed files with 16 additions and 0 deletions
16
quickget
16
quickget
|
@ -75,6 +75,7 @@ function pretty_name() {
|
||||||
slitaz) PRETTY_NAME="SliTaz GNU/Linux";;
|
slitaz) PRETTY_NAME="SliTaz GNU/Linux";;
|
||||||
truenas-core) PRETTY_NAME="TrueNAS Core";;
|
truenas-core) PRETTY_NAME="TrueNAS Core";;
|
||||||
truenas-scale) PRETTY_NAME="TrueNAS Scale";;
|
truenas-scale) PRETTY_NAME="TrueNAS Scale";;
|
||||||
|
tuxedoos) PRETTY_NAME="TuxedoOS";;
|
||||||
ubuntu-budgie) PRETTY_NAME="Ubuntu Budgie";;
|
ubuntu-budgie) PRETTY_NAME="Ubuntu Budgie";;
|
||||||
ubuntucinnamon) PRETTY_NAME="Ubuntu Cinnamon";;
|
ubuntucinnamon) PRETTY_NAME="Ubuntu Cinnamon";;
|
||||||
ubuntukylin) PRETTY_NAME="Ubuntu Kylin";;
|
ubuntukylin) PRETTY_NAME="Ubuntu Kylin";;
|
||||||
|
@ -243,6 +244,7 @@ function os_support() {
|
||||||
tails \
|
tails \
|
||||||
truenas-core \
|
truenas-core \
|
||||||
truenas-scale \
|
truenas-scale \
|
||||||
|
tuxedoos \
|
||||||
ubuntu \
|
ubuntu \
|
||||||
ubuntu-budgie \
|
ubuntu-budgie \
|
||||||
ubuntucinnamon \
|
ubuntucinnamon \
|
||||||
|
@ -638,6 +640,10 @@ function releases_truenas-scale() {
|
||||||
echo 22.02 22.12
|
echo 22.02 22.12
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function releases_tuxedoos() {
|
||||||
|
echo 2
|
||||||
|
}
|
||||||
|
|
||||||
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 23.04"
|
local INTERIM_SUPPORT="22.10 23.04"
|
||||||
|
@ -1897,6 +1903,16 @@ function get_truenas-core() {
|
||||||
echo "${URL} ${HASH}"
|
echo "${URL} ${HASH}"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function get_tuxedoos() {
|
||||||
|
local DATE="202309111354"
|
||||||
|
local HASH=""
|
||||||
|
local ISO="TUXEDO-OS-${RELEASE}-${DATE}.iso"
|
||||||
|
local URL="https://os.tuxedocomputers.com/"
|
||||||
|
|
||||||
|
HASH=$(wget -q -O- "${URL}/checksums" | grep "${ISO}" | cut -d' ' -f1)
|
||||||
|
echo "${URL}/${ISO} ${HASH}"
|
||||||
|
}
|
||||||
|
|
||||||
function get_ubuntu-server() {
|
function get_ubuntu-server() {
|
||||||
|
|
||||||
local HASH=""
|
local HASH=""
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue