Files
proxmox-packer/builds/linux/ubuntu/25-04/data/network.pkrtpl.hcl
TheHitman1977 57d76b51f7 refactor: 25.04 is not an Ubuntu LTS release (#15)
* feat: 25.04 is not an Ubuntu LTS release

* doc: removed LTS from Ubuntu 25.04
2025-10-13 23:28:07 -05:00

20 lines
372 B
HCL

network:
network:
version: 2
ethernets:
%{ if ip != null ~}
${device}:
dhcp4: false
addresses:
- ${ip}/${netmask}
gateway4: ${gateway}
nameservers:
addresses:
%{ for item in dns ~}
- ${item}
%{ endfor ~}
%{ else ~}
${device}:
dhcp4: true
%{ endif ~}