diff options
author | Stephen Hemminger <shemminger@vyatta.com> | 2012-02-17 11:48:25 -0800 |
---|---|---|
committer | Stephen Hemminger <shemminger@vyatta.com> | 2012-02-17 11:48:25 -0800 |
commit | 85a1c9718c3a7192010de9d3f5ece60b559ce97a (patch) | |
tree | ecac0e8d44351c07073e529f14908e7585c07756 | |
parent | c810ce7ba221c45ce45bf919e702cfb4686e8e9a (diff) | |
download | vyatta-cfg-quagga-85a1c9718c3a7192010de9d3f5ece60b559ce97a.tar.gz vyatta-cfg-quagga-85a1c9718c3a7192010de9d3f5ece60b559ce97a.zip |
snmp: add missing newline to config file
Need newline after agentx
-rwxr-xr-x | scripts/snmp/vyatta-snmp.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/snmp/vyatta-snmp.pl b/scripts/snmp/vyatta-snmp.pl index bd9a5512..d473e7fa 100755 --- a/scripts/snmp/vyatta-snmp.pl +++ b/scripts/snmp/vyatta-snmp.pl @@ -157,7 +157,7 @@ sub snmp_get_constants { print "sysDescr Vyatta $version\n"; print "sysObjectID 1.3.6.1.4.1.30803\n"; print "sysServices 14\n"; - print "master agentx"; # maybe needed by lldpd + print "master agentx\n"; # maybe needed by lldpd print "agentaddress ", join(',',@addr), "\n"; # add hook to read IF-MIB::ifAlias from sysfs |