2001-01-25 16:55:46 +01:00
|
|
|
#!/bin/sh
|
|
|
|
# $FreeBSD$
|
2004-08-29 09:08:03 +02:00
|
|
|
#
|
|
|
|
# PROVIDE: dictd
|
|
|
|
# REQUIRE: DAEMON
|
|
|
|
#
|
|
|
|
# Add the following line to /etc/rc.conf to enable dictd:
|
|
|
|
#
|
|
|
|
# dictd_enable="YES"
|
|
|
|
#
|
2001-01-25 16:55:46 +01:00
|
|
|
|
2004-09-02 08:37:52 +02:00
|
|
|
. %%RC_SUBR%%
|
2001-01-28 22:23:04 +01:00
|
|
|
|
2004-08-29 09:08:03 +02:00
|
|
|
name=dictd
|
|
|
|
rcvar=`set_rcvar`
|
|
|
|
command=%%PREFIX%%/sbin/dictd
|
2001-01-25 16:55:46 +01:00
|
|
|
|
2004-08-29 09:08:03 +02:00
|
|
|
load_rc_config $name
|
|
|
|
run_rc_command "$1"
|