Files
proxmox-packer/builds/linux/centos/9-stream/data/network.pkrtpl.hcl
2024-06-29 10:23:06 -05:00

5 lines
240 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 ~}