blob: 6b44a5cec3034f255e739227fc1b208f8c4c7130 (
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
|
#! /bin/sh
#
# $NetBSD: snmptrapd.sh,v 1.2 2002/02/13 16:41:41 tron Exp $
# PID file:
PF=/var/run/snmptrapd.pid
case $1 in
start)
if [ -x @PREFIX@/sbin/snmptrapd ]
then
echo -n ' 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
sh $0 start
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
esac
|