blob: 52bc90cdd93ec9c0fdeccc211476667a2eda214f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/sh
# $FreeBSD$
#
# PROVIDE: dicod
# REQUIRE: DAEMON
#
# Add the following line to /etc/rc.conf to enable dicod:
#
# dicod_enable="YES"
dicod_enable=${dicod_enable-"NO"}
. /etc/rc.subr
name=dicod
rcvar=dicod_enable
command=%%PREFIX%%/sbin/dicod
load_rc_config $name
run_rc_command "$1"
|