chore(metal/pxe): clean up rendered files

This commit is contained in:
Khue Doan 2022-01-16 10:59:23 +07:00
parent ec16e998d1
commit 59f900aef4
2 changed files with 0 additions and 28 deletions

View File

@ -1,20 +0,0 @@
option space pxelinux;
option pxelinux.magic code 208 = string;
option pxelinux.configfile code 209 = text;
option pxelinux.pathprefix code 210 = text;
option pxelinux.reboottime code 211 = unsigned integer 32;
option architecture-type code 93 = unsigned integer 16;
subnet 192.168.1.0 netmask 255.255.255.0 {
option routers 192.168.1.1;
range 192.168.1.2 192.168.1.254;
class "pxeclients" {
match if substring (option vendor-class-identifier, 0, 9) = "PXEClient";
next-server 192.168.1.12;
if option architecture-type = 00:07 {
filename "grubx64.efi";
}
}
}

View File

@ -1,8 +0,0 @@
set timeout=1
menuentry 'Rocky-8.4-x86_64-minimal (PXE)' {
linux vmlinuz \
ip=dhcp \
ks=http://192.168.1.12/init-config/${net_default_mac}.ks
initrd initrd.img
}