Skip to content

Commit

Permalink
holoiso: 20230626 (quickemu-project#746)
Browse files Browse the repository at this point in the history
* holoiso update

* change position in script

no code change

* remove unused DATE
  • Loading branch information
zen0bit authored and philclifford committed Nov 11, 2023
1 parent 3bb69b6 commit 50c5917
Showing 1 changed file with 15 additions and 16 deletions.
31 changes: 15 additions & 16 deletions quickget
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ function pretty_name() {
freedos) PRETTY_NAME="FreeDOS";;
garuda) PRETTY_NAME="Garuda Linux";;
ghostbsd) PRETTY_NAME="GhostBSD";;
holoiso) PRETTY_NAME="HoloISO";;
kdeneon) PRETTY_NAME="KDE Neon";;
kolibrios) PRETTY_NAME="KolibriOS";;
linuxmint) PRETTY_NAME="Linux Mint";;
Expand All @@ -66,7 +67,6 @@ function pretty_name() {
reactos) PRETTY_NAME="ReactOS";;
rebornos) PRETTY_NAME="RebornOS";;
rockylinux) PRETTY_NAME="Rocky Linux";;
holoiso) PRETTY_NAME="HoloISO";;
truenas-core) PRETTY_NAME="TrueNAS Core";;
truenas-scale) PRETTY_NAME="TrueNAS Scale";;
ubuntu-budgie) PRETTY_NAME="Ubuntu Budgie";;
Expand Down Expand Up @@ -202,6 +202,7 @@ function os_support() {
gentoo \
ghostbsd \
haiku \
holoiso \
kali \
kdeneon \
kolibrios \
Expand All @@ -227,7 +228,6 @@ function os_support() {
siduction \
slackware \
solus \
holoiso \
tails \
truenas-core \
truenas-scale \
Expand Down Expand Up @@ -434,6 +434,10 @@ function editions_haiku() {
echo x86_64 x86_gcc2h
}

function releases_holoiso() {
echo 4.5
}

function releases_kali() {
echo current kali-weekly
}
Expand Down Expand Up @@ -585,10 +589,6 @@ function editions_solus() {
echo Budgie GNOME MATE Plasma
}

function releases_holoiso() {
echo 4.0
}

function releases_tails() {
echo stable
}
Expand Down Expand Up @@ -1393,6 +1393,15 @@ function get_haiku() {
echo "${URL}/${ISO} ${HASH}"
}

function get_holoiso() {
local HASH=""
local ISO="HoloISO_${RELEASE}_ux_changes-20230626_66f7c74061_bootchoice_fixes-1-x86_64.iso"
local URL="http://holoiso.itsvixano.me"

HASH=$(wget -q -O- "${URL}/${ISO}.sha256sum" | cut -d' ' -f1)
echo "${URL}/${ISO} ${HASH}"
}

function get_kali() {
local HASH=""
local ISO=""
Expand Down Expand Up @@ -1725,16 +1734,6 @@ function get_solus() {
echo "${URL}/${ISO} ${HASH}"
}

function get_holoiso() {
local HASH=""
local DATE="20221211"
local ISO="HoloISO_${RELEASE}_OfflineInstaller-${DATE}_1636-x86_64.iso"
local URL="http://holoiso.itsvixano.me"

HASH=$(wget -q -O- "${URL}/${ISO}.sha256sum" | cut -d' ' -f1)
echo "${URL}/${ISO} ${HASH}"
}

function get_tails() {
local ISO=""
local JSON=""
Expand Down

0 comments on commit 50c5917

Please sign in to comment.