mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 17:36:40 +00:00
18 lines
552 B
Text
18 lines
552 B
Text
INFO="SliTaz|Independent||https://www.slitaz.org/en/|Simple, fast and low resource Linux OS for servers & desktops.";;
|
|
|
|
function releases_slitaz() {
|
|
echo preferred core core64 loram core-5in1 preinit
|
|
}
|
|
|
|
function get_slitaz() {
|
|
local HASH=""
|
|
local ISO="slitaz-rolling-${RELEASE}"
|
|
local URL="http://mirror.slitaz.org/iso/rolling"
|
|
|
|
case ${RELEASE} in
|
|
preferred) ISO="slitaz-rolling";;
|
|
*) ISO="slitaz-rolling-${RELEASE}";;
|
|
esac
|
|
HASH=$(wget -q -O- "${URL}/${ISO}.md5" | cut_1)
|
|
echo "${URL}/${ISO}.iso ${HASH}"
|
|
}
|