summaryrefslogtreecommitdiff
path: root/net/net-snmp/files/snmptrapd.sh
blob: c9215ca8fd0efeb1c62ea5586e47f5ea5ae78667 (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
#!@RCD_SCRIPTS_SHELL@
#
# $NetBSD: snmptrapd.sh,v 1.1.1.1 2002/10/24 08:29:34 jlam Exp $
#
# PROVIDE: snmptrapd
# REQUIRE: DAEMON

if [ -f /etc/rc.subr ]; then
	. /etc/rc.subr
fi

name="snmptrapd"
rcvar=$name
command="@PREFIX@/sbin/${name}"
pidfile="/var/run/${name}.pid"
snmptrapd_flags="-s -l 1"	# log using syslog w/ facility LOG_LOCAL1
command_args="-u ${pidfile}"

if [ -f @PKG_SYSCONFDIR@/snmptrapd.conf ]; then
	command_args="${command_args} -c @PKG_SYSCONFDIR@/snmptrapd.conf"
fi

if [ -f /etc/rc.subr -a -f /etc/rc.conf -a -f /etc/rc.d/DAEMON ]; then
        load_rc_config $name
        run_rc_command "$1"
else
	@ECHO@ -n " ${name}"
	${command} ${snmptrapd_flags} ${command_args}
fi