diff options
Diffstat (limited to 'templates/protocols/snmp/node.def')
-rw-r--r-- | templates/protocols/snmp/node.def | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/templates/protocols/snmp/node.def b/templates/protocols/snmp/node.def index b140f7f6..62adc534 100644 --- a/templates/protocols/snmp/node.def +++ b/templates/protocols/snmp/node.def @@ -1,10 +1,10 @@ -help: "Configure SNMP" -commit: $(community/) != ""; "must configure a community" -create: "/opt/vyatta/sbin/vyatta-snmp.pl --init-snmp" -delete: "touch /tmp/snmp.\\$PPID" -end: "if [ -f \"/tmp/snmp.\\$PPID\" ]; then \ +help: Configure SNMP +commit:expression: $VAR(community/) != ""; "must configure a community" +create:expression: "/opt/vyatta/sbin/vyatta-snmp.pl --init-snmp" +delete:expression: "touch /tmp/snmp.$PPID" +end:expression: "if [ -f \"/tmp/snmp.$PPID\" ]; then \ sudo /opt/vyatta/sbin/vyatta-snmp.pl --stop-snmp \ - rm /tmp/snmp.\\$PPID; \ + rm /tmp/snmp.$PPID; \ else \ sudo /opt/vyatta/sbin/vyatta-snmp.pl --update-snmp; \ fi; " |