summaryrefslogtreecommitdiff
path: root/data/templates/snmp/override.conf.tmpl
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2022-04-11 20:57:16 +0200
committerChristian Poessinger <christian@poessinger.com>2022-04-11 20:57:16 +0200
commit7e946dc26f628ac716a1d6a75664781e5685cb66 (patch)
tree6f61be1dde66f8a75eab5345221fbd11831d3b91 /data/templates/snmp/override.conf.tmpl
parent47838b888aa3e7378ca0270a774cb77635b7f092 (diff)
downloadvyos-1x-7e946dc26f628ac716a1d6a75664781e5685cb66.tar.gz
vyos-1x-7e946dc26f628ac716a1d6a75664781e5685cb66.zip
snmp: T4333: migrate to new vyos_defined Jinja2 test
Diffstat (limited to 'data/templates/snmp/override.conf.tmpl')
-rw-r--r--data/templates/snmp/override.conf.tmpl6
1 files changed, 3 insertions, 3 deletions
diff --git a/data/templates/snmp/override.conf.tmpl b/data/templates/snmp/override.conf.tmpl
index 3b00aab83..5d787de86 100644
--- a/data/templates/snmp/override.conf.tmpl
+++ b/data/templates/snmp/override.conf.tmpl
@@ -1,5 +1,5 @@
-{% set vrf_command = 'ip vrf exec ' + vrf + ' ' if vrf is defined else '' %}
-{% set oid_route_table = ' ' if oid_enable is defined and oid_enable == 'route-table' else '-I -ipCidrRouteTable,inetCidrRouteTable' %}
+{% set vrf_command = 'ip vrf exec ' ~ vrf ~ ' ' if vrf is vyos_defined else '' %}
+{% set oid_route_table = ' ' if oid_enable is vyos_defined('route-table') else '-I -ipCidrRouteTable,inetCidrRouteTable' %}
[Unit]
StartLimitIntervalSec=0
After=vyos-router.service
@@ -8,7 +8,7 @@ After=vyos-router.service
Environment=
Environment="MIBDIRS=/usr/share/snmp/mibs:/usr/share/snmp/mibs/iana:/usr/share/snmp/mibs/ietf:/usr/share/vyos/mibs"
ExecStart=
-ExecStart={{vrf_command}}/usr/sbin/snmpd -LS0-5d -Lf /dev/null -u Debian-snmp -g Debian-snmp {{oid_route_table}} -f -p /run/snmpd.pid
+ExecStart={{ vrf_command }}/usr/sbin/snmpd -LS0-5d -Lf /dev/null -u Debian-snmp -g Debian-snmp {{ oid_route_table }} -f -p /run/snmpd.pid
Restart=always
RestartSec=10