mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 17:36:40 +00:00
32 lines
1.3 KiB
Text
32 lines
1.3 KiB
Text
centos-stream
|
|
|
|
centos-stream 10 boot: https://linuxsoft.cern.ch/centos-stream/10-stream/BaseOS/x86_64/iso/CentOS-Stream-10-latest-x86_64-boot.iso
|
|
centos-stream 10 dvd1: https://linuxsoft.cern.ch/centos-stream/10-stream/BaseOS/x86_64/iso/CentOS-Stream-10-latest-x86_64-dvd1.iso
|
|
centos-stream 9 boot: https://linuxsoft.cern.ch/centos-stream/9-stream/BaseOS/x86_64/iso/CentOS-Stream-9-latest-x86_64-boot.iso
|
|
centos-stream 9 dvd1: https://linuxsoft.cern.ch/centos-stream/9-stream/BaseOS/x86_64/iso/CentOS-Stream-9-latest-x86_64-dvd1.iso
|
|
|
|
# Template file for 'centos-stream'
|
|
OSNAME="centos-stream"
|
|
PRETTY="CentOS Stream"
|
|
BASEDOF="Fedora RedHat"
|
|
DESCRIPTION="Continuously delivered distro that tracks just ahead of Red Hat Enterprise Linux (RHEL) development, positioned as a midstream between Fedora Linux and RHEL"
|
|
HOMEPAGE="https://www.centos.org/centos-stream"
|
|
CREDENTIALS="-"
|
|
|
|
|
|
RELEASES="9 10"
|
|
EDITIONS="dvd1 boot"
|
|
|
|
function get_() {
|
|
local HASH=""
|
|
local ISO="CentOS-Stream-${RELEASE}-latest-x86_64-${EDITION}.iso"
|
|
local URL="https://linuxsoft.cern.ch/centos-stream/${RELEASE}-stream/BaseOS/x86_64/iso"
|
|
HASH=$(web_pipe "${URL}/${ISO}.SHA256SUM" | grep "SHA256 (${ISO}" | cut -d' ' -f4)
|
|
echo "${URL}/${ISO} ${HASH}"
|
|
}
|
|
|
|
function specific_tweaks() {
|
|
echo "disk_size=\"32G\"" >> "${CONF_FILE}"
|
|
}
|
|
|
|
|