diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-04-13 22:52:45 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-04-13 22:52:45 +0200 |
commit | 97ffa1cc71bc6d5dc38a4b26fcaae9c29da24fb5 (patch) | |
tree | 3d40bbfd7fd38be32355afbe4f8dbd5e5d7e6c0d /data/templates/lldp/lldpd.tmpl | |
parent | 24f136fe08fb28383be78016c97db236889f621d (diff) | |
download | vyos-1x-97ffa1cc71bc6d5dc38a4b26fcaae9c29da24fb5.tar.gz vyos-1x-97ffa1cc71bc6d5dc38a4b26fcaae9c29da24fb5.zip |
lldp: T4333: migrate to new vyos_defined Jinja2 test
Diffstat (limited to 'data/templates/lldp/lldpd.tmpl')
-rw-r--r-- | data/templates/lldp/lldpd.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/templates/lldp/lldpd.tmpl b/data/templates/lldp/lldpd.tmpl index 819e70c84..9ab1e4367 100644 --- a/data/templates/lldp/lldpd.tmpl +++ b/data/templates/lldp/lldpd.tmpl @@ -1,2 +1,2 @@ ### Autogenerated by lldp.py ### -DAEMON_ARGS="-M 4{% if snmp is defined and snmp.enable is defined %} -x{% endif %}{% if legacy_protocols is defined and legacy_protocols.cdp is defined %} -c{% endif %}{% if legacy_protocols is defined and legacy_protocols.edp is defined %} -e{% endif %}{% if legacy_protocols is defined and legacy_protocols.fdp is defined %} -f{% endif %}{% if legacy_protocols is defined and legacy_protocols.sonmp is defined %} -s{% endif %}" +DAEMON_ARGS="-M 4{% if snmp.enable is vyos_defined %} -x{% endif %}{% if legacy_protocols.cdp is vyos_defined %} -c{% endif %}{% if legacy_protocols.edp is vyos_defined %} -e{% endif %}{% if legacy_protocols.fdp is vyos_defined %} -f{% endif %}{% if legacy_protocols.sonmp is vyos_defined %} -s{% endif %}" |