diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-05-01 18:51:22 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-05-01 18:51:22 +0200 |
commit | f0a13824f39f9da95c77234ad000ce66c3c3b04e (patch) | |
tree | adcda4832b61674a70f4e0f3ac62407dea5e9bcf /data/templates/lldp/vyos.conf.j2 | |
parent | 92f266b733a552b33ebadc6df3328d2c43c351cb (diff) | |
download | vyos-1x-f0a13824f39f9da95c77234ad000ce66c3c3b04e.tar.gz vyos-1x-f0a13824f39f9da95c77234ad000ce66c3c3b04e.zip |
lldp: T4353: fix Jinja2 linting errors
Diffstat (limited to 'data/templates/lldp/vyos.conf.j2')
-rw-r--r-- | data/templates/lldp/vyos.conf.j2 | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/data/templates/lldp/vyos.conf.j2 b/data/templates/lldp/vyos.conf.j2 new file mode 100644 index 000000000..ec84231d8 --- /dev/null +++ b/data/templates/lldp/vyos.conf.j2 @@ -0,0 +1,25 @@ +### Autogenerated by lldp.py ### + +configure system platform VyOS +configure system description "VyOS {{ version }}" +{% if interface is vyos_defined %} +{% set tmp = [] %} +{% for iface, iface_options in interface.items() if not iface_options.disable %} +{% if iface == 'all' %} +{% set iface = '*' %} +{% endif %} +{% set _ = tmp.append(iface) %} +{% if iface_options.location is vyos_defined %} +{% if iface_options.location.elin is vyos_defined %} +configure ports {{ iface }} med location elin "{{ iface_options.location.elin }}" +{% endif %} +{% if iface_options.location.coordinate_based is vyos_defined %} +configure ports {{ iface }} med location coordinate latitude "{{ iface_options.location.coordinate_based.latitude }}" longitude "{{ iface_options.location.coordinate_based.longitude }}" altitude "{{ iface_options.location.coordinate_based.altitude }}m" datum "{{ iface_options.location.coordinate_based.datum }}" +{% endif %} +{% endif %} +{% endfor %} +configure system interface pattern "{{ tmp | join(",") }}" +{% endif %} +{% if management_address is vyos_defined %} +configure system ip management pattern {{ management_address | join(",") }} +{% endif %} |