7add8e3264
* Add "djbdns" rc.d script to control all enabled djbdns services, modeled after the "qmail" rc.d script from mail/qmail-run. * Set rc.conf defaults more succinctly, modeled after mail/qmail-run. * Add "reload" as a synonym for "cdb" in axfrdns, rbldns, and tinydns. * Add "foo_postenv" for additional environment customization, for instance to run dnscache as a pure forwarder. * Add "foo_log" booleans to enable or disable logging (enabled by default). * Always run loggers as the "dnslog" user. This makes it simpler to define alternate loggers.
57 lines
1.5 KiB
Bash
57 lines
1.5 KiB
Bash
#!@RCD_SCRIPTS_SHELL@
|
|
#
|
|
# $NetBSD: tinydns.sh,v 1.4 2005/04/15 05:15:55 schmonz Exp $
|
|
#
|
|
# @PKGNAME@ script to control tinydns (authoritative DNS service)
|
|
#
|
|
|
|
# PROVIDE: tinydns named
|
|
# REQUIRE: SERVERS
|
|
# BEFORE: DAEMON
|
|
|
|
name="tinydns"
|
|
|
|
# User-settable rc.conf variables and their default values:
|
|
: ${tinydns_postenv:=""}
|
|
: ${tinydns_ip:="127.0.0.2"}
|
|
: ${tinydns_datalimit:="300000"}
|
|
: ${tinydns_log:="YES"}
|
|
: ${tinydns_logcmd:="logger -t nb${name} -p daemon.info"}
|
|
: ${tinydns_nologcmd:="@LOCALBASE@/bin/multilog -*"}
|
|
|
|
if [ -f /etc/rc.subr ]; then
|
|
. /etc/rc.subr
|
|
fi
|
|
|
|
rcvar=${name}
|
|
required_files="@PKG_SYSCONFDIR@/tinydns/data.cdb"
|
|
command="@LOCALBASE@/bin/${name}"
|
|
start_precmd="tinydns_precmd"
|
|
extra_commands="reload cdb"
|
|
reload_cmd="tinydns_cdb"; cdb_cmd=${reload_cmd}
|
|
|
|
tinydns_precmd()
|
|
{
|
|
if [ -f /etc/rc.subr ]; then
|
|
checkyesno tinydns_log || tinydns_logcmd=${tinydns_nologcmd}
|
|
fi
|
|
command="@SETENV@ - ${tinydns_postenv} ROOT=@PKG_SYSCONFDIR@/tinydns IP=${tinydns_ip} @LOCALBASE@/bin/envuidgid tinydns @LOCALBASE@/bin/softlimit -d ${tinydns_datalimit} @LOCALBASE@/bin/tinydns </dev/null 2>&1 | @LOCALBASE@/bin/setuidgid dnslog ${tinydns_logcmd}"
|
|
command_args="&"
|
|
rc_flags=""
|
|
}
|
|
|
|
tinydns_cdb()
|
|
{
|
|
@ECHO@ "Reloading @PKG_SYSCONFDIR@/tinydns/data."
|
|
cd @PKG_SYSCONFDIR@/tinydns
|
|
@LOCALBASE@/bin/tinydns-data
|
|
}
|
|
|
|
if [ -f /etc/rc.subr ]; then
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|
|
else
|
|
@ECHO_N@ " ${name}"
|
|
tinydns_precmd
|
|
eval ${command} ${tinydns_flags} ${command_args}
|
|
fi
|