blob: 8a01894b29e32c865879f01b05436c73a0dbc5d8 (
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
|
#!/bin/sh
# $FreeBSD$
#
# PROVIDE: darkice
# REQUIRE: LOGIN
# KEYWORD: SHUTDOWN
#
# Add the following lines to /etc/rc.conf.local or /etc/rc.conf
# to enable this service:
#
# darkice_enable (bool): Set to NO by default.
# Set it to YES to enable darkice.
. /etc/rc.subr
name="darkice"
rcvar=darkice_enable
command="%%PREFIX%%/bin/$name"
command_args="& 1>/dev/null"
required_files="%%ETCDIR%%.cfg"
# read configuration and set defaults
load_rc_config $name
: ${darkice_enable="NO"}
: ${darkice_flags="-c ${required_files}"}
run_rc_command $1
|