Merge pull request #36 from ClusterLabs/install-target-uefi

* Fixed initial UEFI PXE booting (doesn't work yet, but UEFI clients …
This commit is contained in:
digimer-bot 2021-02-09 17:03:49 -05:00 committed by GitHub
commit 7373bca1e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 17 deletions

View File

@ -13,12 +13,11 @@ subnet #!variable!network!# netmask 255.255.0.0 {
max-lease-time 1200; max-lease-time 1200;
range #!variable!range!#; range #!variable!range!#;
option routers #!variable!router!#; option routers #!variable!router!#;
next-server #!variable!router!#;
class "pxeclients" { class "pxeclients" {
match if substring (option vendor-class-identifier, 0, 9) = "PXEClient"; match if substring (option vendor-class-identifier, 0, 9) = "PXEClient";
next-server 192.168.0.1; next-server #!variable!router!#;
if option pxe-system-type = 00:07 { if option arch = 00:07 {
filename "BOOTX64.efi"; filename "BOOTX64.efi";
} else { } else {
filename "pxelinux.0"; filename "pxelinux.0";