Files
proxmox-packer/builds/linux/almalinux/9/data/network.pkrtpl.hcl
2024-07-12 15:16:38 -05:00

6 lines
241 B
HCL

%{ if ip != null ~}
network --device=${device} --bootproto=static --ip=${ip} --netmask=${cidrnetmask("${ip}/${netmask}")} --gateway=${gateway} --nameserver=${join(",", dns)}
%{ else ~}
network --device=${device} --bootproto=dhcp
%{ endif ~}