Merge remote-tracking branch 'origin/master'

This commit is contained in:
Martin Wimpress 2023-01-23 10:47:31 +00:00
commit 462987cf21
No known key found for this signature in database
GPG key ID: 61DF940515E06DA3
5 changed files with 29 additions and 1 deletions

View file

@ -385,6 +385,8 @@ All the official Ubuntu flavours are supported, just replace
.IP \[bu] 2
\f[V]lmde\f[R] (Linux Mint Debian Edition)
.IP \[bu] 2
\f[V]mageia\f[R] (Mageia)
.IP \[bu] 2
\f[V]manjaro\f[R] (Manjaro)
.IP \[bu] 2
\f[V]mxlinux\f[R] (MX Linux)

View file

@ -284,6 +284,7 @@ with your preferred flavour.
- `kolibrios` (KolibriOS)
- `linuxmint` (Linux Mint)
- `lmde` (Linux Mint Debian Edition)
- `mageia` (Mageia)
- `manjaro` (Manjaro)
- `mxlinux` (MX Linux)
- `netboot` (netboot.xyz)

View file

@ -167,6 +167,8 @@ All the official Ubuntu flavours are supported, just replace
.IP \[bu] 2
\f[V]lmde\f[R] (Linux Mint Debian Edition)
.IP \[bu] 2
\f[V]mageia\f[R] (Mageia)
.IP \[bu] 2
\f[V]manjaro\f[R] (Manjaro)
.IP \[bu] 2
\f[V]mxlinux\f[R] (MX Linux)

View file

@ -116,6 +116,7 @@ with your preferred flavour.
- `kolibrios` (KolibriOS)
- `linuxmint` (Linux Mint)
- `lmde` (Linux Mint Debian Edition)
- `mageia` (Mageia)
- `manjaro` (Manjaro)
- `mxlinux` (MX Linux)
- `netboot` (netboot.xyz)

View file

@ -49,6 +49,7 @@ function pretty_name() {
kolibrios) PRETTY_NAME="KolibriOS";;
linuxmint) PRETTY_NAME="Linux Mint";;
lmde) PRETTY_NAME="Linux Mint Debian Edition";;
mageia) PRETTY_NAME="Mageia";;
mxlinux) PRETTY_NAME="MX Linux";;
netboot) PRETTY_NAME="netboot.xyz";;
netbsd) PRETTY_NAME="NetBSD";;
@ -189,6 +190,7 @@ function os_support() {
kubuntu \
linuxmint \
lmde \
mageia \
manjaro \
mxlinux \
netboot \
@ -299,8 +301,13 @@ function releases_elementary() {
function releases_endeavouros() {
echo apollo_22_1 \
artemis-22_6 \
artemis_neo_22_7 \
artemis_neo_22_8 \
artemis_nova_22_9 \
atlantis-21_4 \
atlantis_neo-21_5
atlantis_neo-21_5 \
cassini_22_12
}
function releases_fedora() {
@ -393,6 +400,14 @@ function releases_lmde(){
echo 5
}
function releases_mageia(){
echo 8
}
function editions_mageia(){
echo Plasma GNOME Xfce
}
function releases_mxlinux(){
echo 21.2.1
}
@ -1298,6 +1313,13 @@ function get_macos() {
make_vm_config RecoveryImage.img
}
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 -d' ' -f1)
echo "${ISO} ${HASH}"
}
function get_manjaro() {
local HASH=""
local ISO=""