summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2022-02-26 23:06:37 +0100
committerChristian Poessinger <christian@poessinger.com>2022-02-26 23:06:37 +0100
commit17602c2d63aacc972d4e2f6f21aeeded243d4fa1 (patch)
treee5185c09e1dc9c99a66411f4e4f8fbde6ce59759 /data
parent3b72f115807d84a08000d8ddbbadb521e671e697 (diff)
downloadvyos-1x-17602c2d63aacc972d4e2f6f21aeeded243d4fa1.tar.gz
vyos-1x-17602c2d63aacc972d4e2f6f21aeeded243d4fa1.zip
lldp: T4272: minor bugfix in Jinja2 template for location
Diffstat (limited to 'data')
-rw-r--r--data/templates/lldp/vyos.conf.tmpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/templates/lldp/vyos.conf.tmpl b/data/templates/lldp/vyos.conf.tmpl
index 592dcf61f..14395a223 100644
--- a/data/templates/lldp/vyos.conf.tmpl
+++ b/data/templates/lldp/vyos.conf.tmpl
@@ -13,7 +13,7 @@ configure system description "VyOS {{ version }}"
{% if iface_options.location.elin is defined and iface_options.location.elin is not none %}
configure ports {{ iface }} med location elin "{{ iface_options.location.elin }}"
{% endif %}
-{% if iface_options.location is defined and iface_options.location.coordinate_based is not none and iface_options.location.coordinate_based is not none %}
+{% if iface_options.location is defined and iface_options.location.coordinate_based is defined and iface_options.location.coordinate_based is not none %}
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 %}