19861569ce
seed file on first startup after all. Primary rationale: it is not desirable that the predictability of the first boot (whatever that may happen to be) force an upper bound on the unpredictability of random seeds for all future dnscache instances. Instead, as before, let dnscache read 128 new bytes on every startup. Just give it /dev/urandom instead of /dev/random. While here, abolish references to LOCALBASE. Bump version.
51 lines
1.5 KiB
Bash
51 lines
1.5 KiB
Bash
#!@RCD_SCRIPTS_SHELL@
|
|
#
|
|
# $NetBSD: dnscache.sh,v 1.7 2014/12/07 04:33:31 schmonz Exp $
|
|
#
|
|
# @PKGNAME@ script to control dnscache (caching DNS resolver)
|
|
#
|
|
|
|
# PROVIDE: dnscache named
|
|
# REQUIRE: NETWORKING mountcritremote syslogd
|
|
# BEFORE: DAEMON
|
|
|
|
name="dnscache"
|
|
|
|
# User-settable rc.conf variables and their default values:
|
|
: ${dnscache_postenv:=""}
|
|
: ${dnscache_ip:="127.0.0.1"}
|
|
: ${dnscache_ipsend:="0.0.0.0"}
|
|
: ${dnscache_size:="1000000"}
|
|
: ${dnscache_datalimit:="3000000"}
|
|
: ${dnscache_log:="YES"}
|
|
: ${dnscache_logcmd:="logger -t nb${name} -p daemon.info"}
|
|
: ${dnscache_nologcmd:="@DAEMONTOOLS_PREFIX@/bin/multilog -*"}
|
|
|
|
if [ -f /etc/rc.subr ]; then
|
|
. /etc/rc.subr
|
|
fi
|
|
|
|
rcvar=${name}
|
|
required_dirs="@PKG_SYSCONFDIR@/dnscache/ip @PKG_SYSCONFDIR@/dnscache/servers"
|
|
required_files="@PKG_SYSCONFDIR@/dnscache/servers/@"
|
|
command="@DJBDNS_PREFIX@/bin/${name}"
|
|
start_precmd="dnscache_precmd"
|
|
|
|
dnscache_precmd()
|
|
{
|
|
if [ -f /etc/rc.subr ]; then
|
|
checkyesno dnscache_log || dnscache_logcmd=${dnscache_nologcmd}
|
|
fi
|
|
command="@SETENV@ - ${dnscache_postenv} ROOT=@PKG_SYSCONFDIR@/dnscache IP=${dnscache_ip} IPSEND=${dnscache_ipsend} CACHESIZE=${dnscache_size} @DAEMONTOOLS_PREFIX@/bin/envuidgid dnscache @DAEMONTOOLS_PREFIX@/bin/softlimit -o250 -d ${dnscache_datalimit} @DJBDNS_PREFIX@/bin/dnscache </dev/urandom 2>&1 | @DAEMONTOOLS_PREFIX@/bin/setuidgid dnslog ${dnscache_logcmd}"
|
|
command_args="&"
|
|
rc_flags=""
|
|
}
|
|
|
|
if [ -f /etc/rc.subr ]; then
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|
|
else
|
|
@ECHO_N@ " ${name}"
|
|
dnscache_precmd
|
|
eval ${command} ${dnscache_flags} ${command_args}
|
|
fi
|