blob: 2264a4e66c0a7236679e2297206683c00dbb1a7f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#!/bin/sh
#
# $FreeBSD: /tmp/pcvs/ports/security/drweb/files/Attic/drwebd.in,v 1.2 2010-03-27 00:14:43 dougb Exp $
# PROVIDE: drwebd
# REQUIRE: DAEMON
# BEFORE: mail
. /etc/rc.subr
name="drwebd"
rcvar=`set_rcvar`
load_rc_config $name
: ${drwebd_enable="NO"}
: ${drwebd_pidfile="/var/drweb/run/drwebd.pid"}
: ${drwebd_procname="%%PREFIX%%/drweb/drwebd"}
command=$drwebd_procname
pidfile=$drwebd_pidfile
run_rc_command "$1"
|