Skip to content

Commit

Permalink
add test for UEFI clients
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Lange committed May 30, 2018
1 parent e7ce330 commit f2321b4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion examples/etc/dhcpd.conf
Expand Up @@ -14,7 +14,12 @@ subnet 192.168.33.0 netmask 255.255.255.0 {
option ntp-servers faiserver;
server-name faiserver;
next-server faiserver;
filename "fai/pxelinux.0";
if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00000" {
filename "fai/pxelinux.0";
}
if substring(option vendor-class-identifier, 0, 20) = "PXEClient:Arch:00007" {
filename "fai/grubnetx64.efi";
}
}

# generate a lot of entries with:
Expand Down

0 comments on commit f2321b4

Please sign in to comment.