Skip to content

Commit

Permalink
Add tuxedoos
Browse files Browse the repository at this point in the history
  • Loading branch information
zen0bit committed Sep 13, 2023
1 parent c7e91a0 commit b645247
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions quickget
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ function pretty_name() {
rebornos) PRETTY_NAME="RebornOS";;
rockylinux) PRETTY_NAME="Rocky Linux";;
holoiso) PRETTY_NAME="HoloISO";;
tuxedoos) PRETTY_NAME="TuxedoOS";;
truenas-core) PRETTY_NAME="TrueNAS Core";;
truenas-scale) PRETTY_NAME="TrueNAS Scale";;
ubuntu-budgie) PRETTY_NAME="Ubuntu Budgie";;
Expand Down Expand Up @@ -227,6 +228,7 @@ function os_support() {
solus \
holoiso \
tails \
tuxedoos \
truenas-core \
truenas-scale \
ubuntu \
Expand Down Expand Up @@ -579,6 +581,10 @@ function releases_tails() {
echo stable
}

function releases_tuxedoos() {
echo 2
}

function releases_truenas() {
if [[ $OS == truenas ]] ; then
echo "ERROR! The supported TrueNAS OS values are truenas-core or truenas-scale"
Expand Down Expand Up @@ -1687,6 +1693,16 @@ function get_tails() {
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_truenas-scale() {
local ISO=""
local URL=""
Expand Down

0 comments on commit b645247

Please sign in to comment.