summaryrefslogtreecommitdiff
path: root/staging/net-snmp/snmpd.rc
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2012-02-17 19:21:14 +0000
committerParabola <dev@list.parabolagnulinux.org>2012-02-17 19:21:14 +0000
commit68998b64e2d81f7e77184b7f23ee141da1d0e2ff (patch)
treedfa6ff47ee59435fe22c16f65d2fc641d78a6417 /staging/net-snmp/snmpd.rc
parent4fc59478d1180fd7984003f5b1645fe40954299f (diff)
Fri Feb 17 19:21:14 UTC 2012
Diffstat (limited to 'staging/net-snmp/snmpd.rc')
-rw-r--r--staging/net-snmp/snmpd.rc39
1 files changed, 0 insertions, 39 deletions
diff --git a/staging/net-snmp/snmpd.rc b/staging/net-snmp/snmpd.rc
deleted file mode 100644
index b00c09f4f..000000000
--- a/staging/net-snmp/snmpd.rc
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-. /etc/conf.d/snmpd
-
-PID=`pidof -o %PPID /usr/sbin/snmpd`
-case "$1" in
- start)
- stat_busy "Starting Net-SNMP"
- [ -z "$PID" ] && /usr/sbin/snmpd $SNMPD_ARGS
- if [ $? -gt 0 ]; then
- stat_fail
- else
- echo $PID > /var/run/snmpd.pid
- add_daemon snmpd
- stat_done
- fi
- ;;
- stop)
- stat_busy "Stopping Net-SNMP"
- [ ! -z "$PID" ] && kill $PID &> /dev/null
- if [ $? -gt 0 ]; then
- stat_fail
- else
- rm /var/run/snmpd.pid
- rm_daemon snmpd
- stat_done
- fi
- ;;
- restart)
- $0 stop
- sleep 2
- $0 start
- ;;
- *)
- echo "usage: $0 {start|stop|restart}"
-esac
-exit 0