summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2023-07-20 11:06:55 +0200
committerGitHub <noreply@github.com>2023-07-20 11:06:55 +0200
commit6b46a746630288dc8d62af0a411e2079deef8a78 (patch)
treef4ce8eef6a6fd03b1ad441488f1ba812b2a2209b
parentd2540ac4c6fc05991b18cf0e2434fbb6d5f3c2cf (diff)
parent987cf1a0d62ae70fb2ff73b9686ddd60a4f8c178 (diff)
downloadvyos-1x-6b46a746630288dc8d62af0a411e2079deef8a78.tar.gz
vyos-1x-6b46a746630288dc8d62af0a411e2079deef8a78.zip
Merge pull request #2102 from sever-sever/T5373
T5373: LLDP is running even with disable option bug
-rw-r--r--data/templates/lldp/vyos.conf.j22
1 files changed, 1 insertions, 1 deletions
diff --git a/data/templates/lldp/vyos.conf.j2 b/data/templates/lldp/vyos.conf.j2
index ec84231d8..dfa422ab8 100644
--- a/data/templates/lldp/vyos.conf.j2
+++ b/data/templates/lldp/vyos.conf.j2
@@ -4,7 +4,7 @@ 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 %}
+{% for iface, iface_options in interface.items() if iface_options.disable is not vyos_defined %}
{% if iface == 'all' %}
{% set iface = '*' %}
{% endif %}