Artifactory/ipxe/netboot.ipxe
misthios 9241b9a17f
Some checks failed
build ipxe / make ipxe (push) Failing after 13s
ipxe: debug using sleep
2024-03-05 09:59:30 +01:00

31 lines
694 B
Plaintext

#!ipxe
#Init networking
dhcp
#Print useful information for debugging
echo next-server is ${next-server}
echo filaneme is ${filename}
echo MAC address is ${net0/mac}
echo IP address is ${ip}
#Provisioner uses the following pattern: /boot/{mac}
set server http://${next-server}/boot/${mac:hexhyp}
echo Server is ${server}
sleep 5
# Make an HTTP HEAD request to check if the URL exists
http ${server} head || goto link_does_not_exist
#Make sure the link is valid
isset ${http_status} || goto link_does_not_exist
iseq ${http_status} 200 && goto link_exists
:link_does_not_exist
sleep 5
echo Link ${server} does not exist, booting from next bios/uefi target
exit
:link_exists
chain ${server}