init commit

This commit is contained in:
2025-09-14 14:22:00 -07:00
commit 0fcf53e525
14 changed files with 1065 additions and 0 deletions

9
templates/dhcpd.conf.j2 Executable file
View File

@ -0,0 +1,9 @@
subnet {{ dhcp_subnet }} netmask {{ dhcp_netmask }} {
range {{ dhcp_start }} {{ dhcp_end }};
option routers {{ router_ip }};
option domain-name-servers 8.8.8.8, 8.8.4.4;
next-server {{ server_ip }}; # IP of your PXE server
interface {{ listen_interface }};
filename "debian-installer/amd64/grubx64.efi";
}