Skip to content
This repository has been archived by the owner on Sep 2, 2021. It is now read-only.

Commit

Permalink
Update discovery default.ipxe to exit fail from ipxe
Browse files Browse the repository at this point in the history
if it ever gets control back from an ipxe file.

This allows the bios/uefi to continue booting systems.
  • Loading branch information
galthaus committed May 16, 2019
1 parent e884866 commit 204185d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions content/bootenvs/discovery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ Templates:
Path: "default.ipxe"
Contents: |
#!ipxe
chain {{.ProvisionerURL}}/${netX/mac}.ipxe && exit || goto chainip
chain {{.ProvisionerURL}}/${netX/mac}.ipxe && exit 1 || goto chainip
:chainip
chain {{.ProvisionerURL}}/${netX/ip}.ipxe && exit || goto sledgehammer
chain {{.ProvisionerURL}}/${netX/ip}.ipxe && exit 1 || goto sledgehammer
:sledgehammer
chain {{.ProvisionerURL}}/${builtin/buildarch}.ipxe
- Name: "ipxe-i386"
Expand Down

0 comments on commit 204185d

Please sign in to comment.