blob: 8bacfac100f4ed3d581a720b1e7938c20c4d4fe3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#!/bin/sh
#
# $NetBSD: snmptrapd.sh,v 1.5 2002/09/23 15:21:40 grant Exp $
#
# PID file:
PF=/var/run/snmptrapd.pid
case $1 in
start)
if [ -x @PREFIX@/sbin/snmptrapd ]
then
echo 'Starting snmptrapd.'
@PREFIX@/sbin/snmptrapd -s -l 1 -u ${PF}
fi
;;
stop)
if [ -f ${PF} ]; then
kill `cat ${PF}`
rm -f ${PF}
else
echo "$0: snmptrapd not running or PID not recorded!" 1>&2
fi
;;
restart)
sh $0 stop
sleep 5
sh $0 start
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
esac
|