mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
siduction
This commit is contained in:
parent
4d712e440c
commit
6e827af6f2
1 changed files with 20 additions and 0 deletions
20
quickget
20
quickget
|
@ -208,6 +208,7 @@ function os_support() {
|
||||||
reactos \
|
reactos \
|
||||||
rebornos \
|
rebornos \
|
||||||
rockylinux \
|
rockylinux \
|
||||||
|
siduction \
|
||||||
slackware \
|
slackware \
|
||||||
solus \
|
solus \
|
||||||
tails \
|
tails \
|
||||||
|
@ -505,6 +506,14 @@ function editions_rockylinux() {
|
||||||
"dvd (dvd1 prior to 9.0)"
|
"dvd (dvd1 prior to 9.0)"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function releases_siduction() {
|
||||||
|
echo latest
|
||||||
|
}
|
||||||
|
|
||||||
|
function editions_siduction() {
|
||||||
|
echo kde lxqt nox xfce xorg
|
||||||
|
}
|
||||||
|
|
||||||
function releases_slackware() {
|
function releases_slackware() {
|
||||||
echo 14.2 15.0
|
echo 14.2 15.0
|
||||||
}
|
}
|
||||||
|
@ -1496,6 +1505,17 @@ function get_rockylinux() {
|
||||||
echo "${URL}/${ISO} ${HASH}"
|
echo "${URL}/${ISO} ${HASH}"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function get_siduction() {
|
||||||
|
local HASH=""
|
||||||
|
local DATE=""
|
||||||
|
local ISO=""
|
||||||
|
local URL="https://mirrors.dotsrc.org/siduction/iso/Masters_of_War/${EDITION}"
|
||||||
|
DATE=$(wget -q -O- "${URL}"| grep .iso.md5 | cut -d'-' -f6 | cut -d'.' -f1)
|
||||||
|
HASH=$(wget -q -O- "${URL}/${ISO}.md5" | cut -d' ' -f1)
|
||||||
|
ISO="siduction-22.1.1-Masters_of_War-${EDITION}-amd64-${DATE}.iso"
|
||||||
|
echo "${URL}/${ISO} ${HASH}"
|
||||||
|
}
|
||||||
|
|
||||||
function get_slackware() {
|
function get_slackware() {
|
||||||
local HASH=""
|
local HASH=""
|
||||||
local ISO="slackware64-${RELEASE}-install-dvd.iso"
|
local ISO="slackware64-${RELEASE}-install-dvd.iso"
|
||||||
|
|
Loading…
Reference in a new issue