mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 17:36:40 +00:00
21 lines
742 B
Text
21 lines
742 B
Text
INFO="Siduction|Debian||https://siduction.org/|Operating system based on the Linux kernel and the GNU project. In addition, there are applications and libraries from Debian.";;
|
|
|
|
function releases_siduction() {
|
|
echo latest
|
|
}
|
|
|
|
function editions_siduction() {
|
|
echo kde lxqt nox xfce xorg
|
|
}
|
|
|
|
function get_siduction() {
|
|
local HASH=""
|
|
local DATE=""
|
|
local ISO=""
|
|
local URL="https://mirrors.dotsrc.org/siduction/iso/Standing_on_the_Shoulders_of_Giants/${EDITION}"
|
|
|
|
DATE=$(wget -q -O- "${URL}"| grep .iso.md5 | cut -d'-' -f6 | cut -d'.' -f1)
|
|
HASH=$(wget -q -O- "${URL}/${ISO}.md5" | cut_1)
|
|
ISO="siduction-2023.1.1-Standing_on_the_Shoulders_of_Giants-${EDITION}-amd64-${DATE}.iso"
|
|
echo "${URL}/${ISO} ${HASH}"
|
|
}
|