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