Files
proxmox-packer/builds/linux/debian/13/data/network.pkrtpl.hcl
John Angelmo 90bd5733cf Add Debian 13 support and update Debian 11/12 ISOs
- Add complete Debian 13 (Trixie) support with all necessary configuration files
- Update Debian 11 ISO to 11.11.0 with SHA512 checksum
- Update Debian 12 ISO to 12.12.0 with SHA512 checksum
- Created new debian/13 directory with packer templates and variables
- Added preseed configuration for Debian 13 automated installation
2025-11-16 18:20:03 +01:00

10 lines
355 B
HCL

d-i netcfg/choose_interface select ${device}
%{ if ip != null ~}
d-i netcfg/disable_autoconfig boolean true
d-i netcfg/get_ipaddress string ${ip}
d-i netcfg/get_netmask string ${cidrnetmask("${ip}/${netmask}")}
d-i netcfg/get_gateway string ${gateway}
d-i netcfg/get_nameservers string ${join(" ", dns)}
d-i netcfg/confirm_static boolean true
%{ endif ~}