mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 17:36:40 +00:00
16 lines
633 B
Text
16 lines
633 B
Text
INFO="TrueNAS Scale|Debian||https://www.truenas.com/truenas-scale/|Open Source Hyperconverged Infrastructure (HCI) solution. In addition to powerful scale-out storage capabilities, SCALE adds Linux Containers and VMs (KVM) so apps run closer to data.";;
|
|
|
|
function releases_truenas-scale() {
|
|
echo 22.12 22.02
|
|
}
|
|
|
|
function get_truenas-scale() {
|
|
local HASH=""
|
|
local ISO=""
|
|
local URL=""
|
|
local DLINFO="https://www.truenas.com/download-truenas-scale/"
|
|
|
|
URL=$(wget -q ${DLINFO} -O- | grep -o "\"https://.*${RELEASE}.*\.iso\""|cut -d\" -f2)
|
|
HASH=$(wget -q "${URL}.sha256" -O- | cut_1 )
|
|
echo "${URL} ${HASH}"
|
|
}
|