summaryrefslogtreecommitdiff
path: root/data/templates/lldp/vyos.conf.tmpl
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2022-04-13 22:52:45 +0200
committerChristian Poessinger <christian@poessinger.com>2022-04-13 22:52:45 +0200
commit97ffa1cc71bc6d5dc38a4b26fcaae9c29da24fb5 (patch)
tree3d40bbfd7fd38be32355afbe4f8dbd5e5d7e6c0d /data/templates/lldp/vyos.conf.tmpl
parent24f136fe08fb28383be78016c97db236889f621d (diff)
downloadvyos-1x-97ffa1cc71bc6d5dc38a4b26fcaae9c29da24fb5.tar.gz
vyos-1x-97ffa1cc71bc6d5dc38a4b26fcaae9c29da24fb5.zip
lldp: T4333: migrate to new vyos_defined Jinja2 test
Diffstat (limited to 'data/templates/lldp/vyos.conf.tmpl')
-rw-r--r--data/templates/lldp/vyos.conf.tmpl10
1 files changed, 5 insertions, 5 deletions
diff --git a/data/templates/lldp/vyos.conf.tmpl b/data/templates/lldp/vyos.conf.tmpl
index 14395a223..c34a851aa 100644
--- a/data/templates/lldp/vyos.conf.tmpl
+++ b/data/templates/lldp/vyos.conf.tmpl
@@ -2,24 +2,24 @@
configure system platform VyOS
configure system description "VyOS {{ version }}"
-{% if interface is defined and interface is not none %}
+{% 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 defined and iface_options.location is not none %}
-{% if iface_options.location.elin is defined and iface_options.location.elin is not none %}
+{% 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 is defined and iface_options.location.coordinate_based is defined and iface_options.location.coordinate_based is not none %}
+{% 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 defined and management_address is not none %}
+{% if management_address is vyos_defined %}
configure system ip management pattern {{ management_address | join(",") }}
{% endif %}