We have not checked for this KEYWORD for a long time now, so this is a complete noop, and thus no PORTREVISION bump. Removing it at this point is mostly for pedantic reasons, and partly to avoid perpetuating this anachronism by copy and paste to future scripts.
19 lines
261 B
Bash
19 lines
261 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
#
|
|
# PROVIDE: dictd
|
|
# REQUIRE: DAEMON
|
|
#
|
|
# Add the following line to /etc/rc.conf to enable dictd:
|
|
#
|
|
# dictd_enable="YES"
|
|
#
|
|
|
|
. %%RC_SUBR%%
|
|
|
|
name=dictd
|
|
rcvar=`set_rcvar`
|
|
command=%%PREFIX%%/sbin/dictd
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|