blob: d381fc1f4f0833ba7c1fc9ea44a4c8862193c690 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/sh
# 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"
|