20 lines
476 B
Plaintext
20 lines
476 B
Plaintext
# Template file for 'netboot'
|
|
OSNAME="netboot"
|
|
PRETTY="netboot.xyz"
|
|
BASEDOF="iPXE"
|
|
HOMEPAGE="https://netboot.xyz"
|
|
DESCRIPTION="Your favorite operating systems in one place"
|
|
CREDENTIALS="-"
|
|
|
|
function releases_() {
|
|
echo 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}"
|
|
}
|