vms/recipes/debian/templates/conf/nuo-matchbox/network/interfaces.pktpl.hcl

9 lines
165 B
HCL
Raw Normal View History

2023-09-28 16:34:53 +02:00
%{ for iface in Vars.NIC }
auto ${iface.Name}
iface ${iface.Name} inet static
address ${iface.IP}
netmask ${iface.Mask}
gateway ${iface.Gateway}
%{ endfor ~}