mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 17:36:40 +00:00
17 lines
741 B
Text
17 lines
741 B
Text
INFO=" |Vanilla OS|Debian,Ubuntu||https://vanillaos.org/|Designed to be a reliable and productive operating system for your daily work.";;
|
|
|
|
function releases_vanillaos() {
|
|
echo 22.10
|
|
}
|
|
|
|
function get_vanillaos() {
|
|
# maybe use github api and dynamism for R2.0 but for 22.10 just
|
|
# hit their CDN
|
|
#
|
|
# https://cdn.vanillaos.org/assets/ISO/22.10-r8/VanillaOS-22.10-all.20230226.md5.txt
|
|
# https://cdn.vanillaos.org/assets/ISO/22.10-r8/VanillaOS-22.10-all.20230226.sha256.txt
|
|
local HASH=$(curl -s "https://cdn.vanillaos.org/assets/ISO/22.10-r8/VanillaOS-22.10-all.20230226.sha256.txt" | cut_1)
|
|
local URL="https://cdn.vanillaos.org/assets/ISO/22.10-r8/VanillaOS-22.10-all.20230226.iso"
|
|
|
|
echo "${URL} ${HASH}"
|
|
}
|