mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 17:36:40 +00:00
20 lines
519 B
Text
20 lines
519 B
Text
INFO="OpenIndiana|Solaris,OpenSolaris||https://www.openindiana.org/|Community supported illumos-based operating system.";;
|
|
|
|
function releases_openindiana(){
|
|
echo 20230421
|
|
}
|
|
|
|
function editions_openindiana(){
|
|
echo gui text minimal
|
|
}
|
|
|
|
function get_openindiana(){
|
|
local HASH=""
|
|
local ISO=""
|
|
local URL=""
|
|
|
|
URL="https://dlc.openindiana.org/isos/hipster/${RELEASE}"
|
|
ISO="OI-hipster-${EDITION}-${RELEASE}.iso"
|
|
HASH=$(wget -q -O- "${URL}/${ISO}.sha256" |cut_1)
|
|
echo "${URL}/${ISO} ${HASH}"
|
|
}
|