summaryrefslogtreecommitdiff
path: root/staging/net-snmp/snmpd.rc
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-06-06 14:37:09 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-06-06 14:37:09 +0000
commitc81b3455112a3b09a8341fc8c45a91bd92c15a12 (patch)
tree93c34f7cbae7441700884513f0e5ebcec9c5f512 /staging/net-snmp/snmpd.rc
parent3695b5d62c2aef6e82abc95d775a2ebd89bce081 (diff)
Mon Jun 6 14:37:05 UTC 2011
Diffstat (limited to 'staging/net-snmp/snmpd.rc')
-rw-r--r--staging/net-snmp/snmpd.rc38
1 files changed, 0 insertions, 38 deletions
diff --git a/staging/net-snmp/snmpd.rc b/staging/net-snmp/snmpd.rc
deleted file mode 100644
index 9f1b83f64..000000000
--- a/staging/net-snmp/snmpd.rc
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-PID=`pidof -o %PPID /usr/sbin/snmpd`
-case "$1" in
- start)
- stat_busy "Starting Net-SNMP"
- [ -z "$PID" ] && /usr/sbin/snmpd
- 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