blob: ee7314787bfa6d26cd32156bc867a28659940778 (
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
25
26
|
#!/bin/sh
#
# $FreeBSD$
# PROVIDE: qpopper
# REQUIRE: NETWORKING SERVERS
# BEFORE: DAEMON
# KEYWORD: shutdown
#
# Add the following lines to /etc/rc.conf to enable qpopper:
# qpopper_enable="YES"
#
qpopper_enable=${qpopper_enable-"NO"}
qpopper_flags=${qpopper_flags-""}
. /etc/rc.subr
name=qpopper
rcvar=qpopper_enable
command=%%PREFIX%%/libexec/qpopper
command_args="${qpopper_flags}"
load_rc_config $name
run_rc_command "$1"
|