mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 17:36:40 +00:00
24 lines
693 B
Text
24 lines
693 B
Text
# Template file for 'alma'
|
|
OSNAME="alma"
|
|
PRETTY="AlmaLinux"
|
|
BASEDOF="Fedora RedHat"
|
|
DESCRIPTION="Community distribution, focused on long-term stability, providing a robust production-grade platform. Binary compatible with RHEL®"
|
|
HOMEPAGE="https://almalinux.org/"
|
|
CREDENTIALS="-"
|
|
|
|
|
|
RELEASES="9 8"
|
|
EDITIONS="minimal dvd boot"
|
|
|
|
function get_() {
|
|
local HASH=""
|
|
local ISO="AlmaLinux-${RELEASE}-latest-x86_64-${EDITION}.iso"
|
|
local URL="https://repo.almalinux.org/almalinux/${RELEASE}/isos/x86_64"
|
|
HASH="$(web_pipe "${URL}/CHECKSUM" | grep "(${ISO}" | cut -d' ' -f4)"
|
|
echo "${URL}/${ISO} ${HASH}"
|
|
}
|
|
|
|
function specific_tweaks() {
|
|
echo "disk_size=\"32G\"" >> "${CONF_FILE}"
|
|
}
|
|
|