mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 17:36:40 +00:00
24 lines
647 B
Text
24 lines
647 B
Text
# Template file for 'slackware'
|
|
OSNAME="slackware"
|
|
PRETTY="slackware"
|
|
BASEDOF="-"
|
|
DESCRIPTION="Advanced Linux operating system, designed with the twin goals of ease of use and stability as top priorities"
|
|
HOMEPAGE="http://www.slackware.com"
|
|
CREDENTIALS="-"
|
|
|
|
|
|
RELEASES="15.0 14.2 14.1 14.0 13.37"
|
|
|
|
|
|
function get_() {
|
|
local HASH=""
|
|
local ISO="slackware64-${RELEASE}-install-dvd.iso"
|
|
local URL="https://slackware.nl/slackware/slackware-iso/slackware64-${RELEASE}-iso"
|
|
HASH=$(web_pipe "${URL}/${ISO}.md5" | cut -d' ' -f1)
|
|
echo "${URL}/${ISO} ${HASH}"
|
|
}
|
|
|
|
function specific_tweaks() {
|
|
echo "boot=\"legacy\"" >> "${CONF_FILE}"
|
|
}
|
|
|