mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 09:32:21 +00:00
39 lines
1,013 B
Text
39 lines
1,013 B
Text
# Template file for 'devuan'
|
|
OSNAME="devuan"
|
|
PRETTY="Devuan"
|
|
LOGO=" "
|
|
ICON="devuan.svg"
|
|
ICON_ONLINE="https://distrowatch.com/images/yvzhuwbpy/devuan.png"
|
|
CATEGORY="advanced"
|
|
BASEDOF="Debian"
|
|
HOMEPAGE="https://www.devuan.org"
|
|
DESCRIPTION="Fork of Debian without systemd that allows users to reclaim control over their system by avoiding unnecessary entanglements and ensuring Init Freedom"
|
|
CREDENTIALS="-"
|
|
GPG=""
|
|
RSS=""
|
|
DW=""
|
|
|
|
function releases_() {
|
|
echo excalibur daedalus chimaera
|
|
}
|
|
|
|
function get_() {
|
|
local HASH=""
|
|
local ISO=""
|
|
local URL="https://files.devuan.org/devuan_${RELEASE}/desktop-live"
|
|
local VER=""
|
|
case ${RELEASE} in
|
|
beowulf) VER="3.1.1";;
|
|
chimaera) VER="4.0.3";;
|
|
daedalus) VER="5.0.0";;
|
|
excalibur) VER="6.0.0";;
|
|
esac
|
|
ISO="devuan_${RELEASE}_${VER}_amd64_desktop-live.iso"
|
|
HASH=$(web_pipe "${URL}/SHASUMS.txt" | grep "${ISO}" | cut -d' ' -f1)
|
|
echo "${URL}/${ISO} ${HASH}"
|
|
}
|
|
|
|
function config_() {
|
|
echo "disk_size=\"64G\"" >> "${CONF_FILE}"
|
|
echo "ram=\"4G\"" >> "${CONF_FILE}"
|
|
}
|