freebsd-ports/dns/opendd/files/opendd.in
Rong-En Fan 1d185da0d4 - Update to 0.7.9
- Use ETCDIR

PR:		ports/122834
Submitted by:	Alexander Logvinov <ports at logvinov.com> (maintainer)
2008-04-27 05:21:19 +00:00

36 lines
713 B
Bash

#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: opendd
# REQUIRE: NETWORKING
#
# Add the following line to /etc/rc.conf[.local] to enable opendd
#
# opendd_enable (bool): Set to "NO" by default.
# Set it to "YES" to enable opendd.
. %%RC_SUBR%%
name="opendd"
rcvar=${name}_enable
load_rc_config $name
: ${opendd_enable="NO"}
: ${opendd_pidfile="/var/run/opendd.pid"}
command="%%PREFIX%%/sbin/opendd"
required_files="%%ETCDIR%%/opendd.conf"
pidfile="/var/run/opendd.pid"
start_precmd="opendd_check"
opendd_check()
{
if ! egrep -q -i -E "^runasdaemon.*=.*1$" ${required_files}
then
err 1 "opendd script need "runasdaemon=1" on config file"
fi
}
run_rc_command "$1"