#!/bin/sh

# PROVIDE: utdns
# REQUIRE: LOGIN
# KEYWORD: shutdown
#
# Add the following lines to /etc/rc.conf.local or /etc/rc.conf
# to enable this service:
#
# utdns_enable (bool):	Set to NO by default.
#			Set it to YES to enable it.
# utdns_flags:		Additional flags (see utdns --help)

. /etc/rc.subr

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

load_rc_config ${name}

: ${utdns_enable:="NO"}
: ${utdns_svcj_options:="net_basic"}
: ${utdns_flags:=" -b -4 -p 53 0.0.0.0"}

command="/usr/local/bin/${name}"
command_args='> /dev/null 2>&1'

run_rc_command "$1"
