mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 09:32:21 +00:00
31 lines
629 B
Text
31 lines
629 B
Text
# Template file for 'netboot'
|
|
OSNAME="netboot"
|
|
PRETTY="netboot.xyz"
|
|
LOGO=""
|
|
ICON="netboot.svg"
|
|
ICON_ONLINE="https://distrowatch.com/images/yvzhuwbpy/netboot.png"
|
|
CATEGORY="advanced"
|
|
BASEDOF="iPXE"
|
|
DESCRIPTION="Your favorite operating systems in one place"
|
|
HOMEPAGE="https://netboot.xyz"
|
|
CREDENTIALS="-"
|
|
GPG=""
|
|
RSS=""
|
|
DW=""
|
|
MAGNET=""
|
|
CHAT=""
|
|
|
|
RELEASES="latest"
|
|
QEMU_ARCH="amd64"
|
|
|
|
releases_() {
|
|
echo latest
|
|
}
|
|
|
|
get_() {
|
|
local HASH=""
|
|
local ISO="netboot.xyz.iso"
|
|
local URL="https://boot.netboot.xyz/ipxe"
|
|
HASH=$(web_pipe "${URL}/netboot.xyz-sha256-checksums.txt" | grep "${ISO}" | cut -d' ' -f1)
|
|
echo "${URL}/${ISO} ${HASH}"
|
|
}
|