#!/bin/sh
#
# $FreeBSD: ports/dns/opendd/files/opendd.in,v 1.1 2006/11/15 21:23:52 miwi Exp $
#
# 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.

. /etc/rc.subr

name="opendd"
rcvar=${name}_enable

load_rc_config $name

: ${opendd_enable="NO"}
: ${opendd_pidfile="/var/run/opendd.pid"}

command="/usr/local/sbin/opendd"
required_files="/usr/local/etc/opendd/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"


syntax highlighted by Code2HTML, v. 0.9.1