From 474e3bee042a75eb656caf82c1c78b14bc382363 Mon Sep 17 00:00:00 2001 From: bbs2web Date: Wed, 29 Jan 2020 06:23:39 +0200 Subject: [PATCH] T1994 - Fixed lldpd jinja template - listen on specified interfaces Signed-off-by: bbs2web --- src/conf_mode/lldp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/conf_mode/lldp.py b/src/conf_mode/lldp.py index 51425aa..90cea0f 100755 --- a/src/conf_mode/lldp.py +++ b/src/conf_mode/lldp.py @@ -38,7 +38,7 @@ vyos_tmpl = """ configure system platform VyOS configure system description "VyOS {{ options.description }}" -{%- if listen_on -%} +{% if options.listen_on -%} configure system interface pattern "{{ options.listen_on | join(",") }}" {%- endif %} {% if options.mgmt_addr -%} -- 1.7.12.4