mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 17:36:40 +00:00
16 lines
522 B
Text
16 lines
522 B
Text
INFO=" |Mageia|Independent||https://www.mageia.org/|Stable, secure operating system for desktop & server.";;
|
|
|
|
function releases_mageia(){
|
|
echo 8
|
|
}
|
|
|
|
function editions_mageia(){
|
|
echo Plasma GNOME Xfce
|
|
}
|
|
|
|
function get_mageia() {
|
|
local EDITION="${1:-}"
|
|
local ISO=$(wget -q https://www.mageia.org/en/downloads/get/?q="Mageia-${RELEASE}-Live-${EDITION}-x86_64.iso" -O- | grep 'click here'| grep -o 'href=.*\.iso'|cut -d\" -f2)
|
|
local HASH=$(wget -q -O- "${ISO}.sha512" | cut_1)
|
|
echo "${ISO} ${HASH}"
|
|
}
|