mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 17:36:40 +00:00
25 lines
550 B
Text
25 lines
550 B
Text
netboot
|
|
|
|
netboot latest: https://boot.netboot.xyz/ipxe/netboot.xyz.iso
|
|
|
|
# Template file for 'netboot'
|
|
OSNAME="netboot"
|
|
PRETTY="netboot.xyz"
|
|
BASEDOF="iPXE"
|
|
DESCRIPTION="Your favorite operating systems in one place"
|
|
HOMEPAGE="https://netboot.xyz"
|
|
CREDENTIALS="-"
|
|
|
|
|
|
RELEASES="latest"
|
|
|
|
|
|
function 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}"
|
|
}
|
|
|
|
|