Files
proxmox-packer/tests/network/templates/kickstart.pkrtpl
2024-12-09 22:39:52 +00:00

6 lines
244 B
Plaintext

%{~ 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 ~}