diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-02-26 23:06:37 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-02-26 23:06:37 +0100 |
commit | 17602c2d63aacc972d4e2f6f21aeeded243d4fa1 (patch) | |
tree | e5185c09e1dc9c99a66411f4e4f8fbde6ce59759 | |
parent | 3b72f115807d84a08000d8ddbbadb521e671e697 (diff) | |
download | vyos-1x-17602c2d63aacc972d4e2f6f21aeeded243d4fa1.tar.gz vyos-1x-17602c2d63aacc972d4e2f6f21aeeded243d4fa1.zip |
lldp: T4272: minor bugfix in Jinja2 template for location
-rw-r--r-- | data/templates/lldp/vyos.conf.tmpl | 2 |
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 %} |