mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 17:36:40 +00:00
16 lines
636 B
Text
16 lines
636 B
Text
INFO="TrueNAS Core|FreeBSD||https://www.truenas.com/truenas-core/|World’s most popular storage OS because it gives you the power to build your own professional-grade storage system to use in a variety of data-intensive applications without any software costs.";;
|
||
|
||
function releases_truenas-core() {
|
||
echo 13.0 12.0
|
||
}
|
||
|
||
function get_truenas-core() {
|
||
local HASH=""
|
||
local ISO=""
|
||
local URL=""
|
||
local DLINFO="https://www.truenas.com/download-truenas-core/"
|
||
URL=$(wget -q ${DLINFO} -O- | grep -o "\"https://.*${RELEASE}.*\.iso\""|cut -d\" -f2)
|
||
|
||
HASH=$(wget -q ${URL}.sha256 -O- | cut_1)
|
||
echo "${URL} ${HASH}"
|
||
}
|