diff options
Diffstat (limited to 'net-analyzer/net-snmp/files/snmpdnew.rc6')
-rw-r--r-- | net-analyzer/net-snmp/files/snmpdnew.rc6 | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/net-analyzer/net-snmp/files/snmpdnew.rc6 b/net-analyzer/net-snmp/files/snmpdnew.rc6 new file mode 100644 index 000000000000..ab69067b51f8 --- /dev/null +++ b/net-analyzer/net-snmp/files/snmpdnew.rc6 @@ -0,0 +1,27 @@ +#!/sbin/runscript + +depend() { + use logger + need net +} + +checkconfig() { + if [ ! -e /etc/snmp/snmpd.conf ] ; then + eerror "You need an /etc/snmp/snmpd.conf config file to run snmpd" + return 1 + fi +} + +start() { + checkconfig || return 1 + ebegin "Starting net-snmpd" + start-stop-daemon --start --quiet --exec /usr/sbin/snmpd \ + -- -p /var/run/snmpd.pid ${SNMPD_FLAGS} + eend $? +} + +stop() { + ebegin "Stopping net-snmpd" + start-stop-daemon --stop --quiet --pidfile /var/run/snmpd.pid + eend $? +} |