finished converting quagga services to config services

This commit is contained in:
Blake Harnden 2020-01-23 21:08:40 -08:00
parent fcc445bb72
commit b9cbbf5709
2 changed files with 249 additions and 2 deletions

View file

@ -10,9 +10,11 @@ interface ${ifc.name}
ipv6 address ${addr}
% endfor
% endif
% if is_control:
% if not is_control:
% for service in services:
${service.quagga_interface_config(ifc)}
% for line in service.quagga_interface_config(ifc).split("\n"):
${line}
% endfor
% endfor
% endif
!