13 lines
355 B
Bash
13 lines
355 B
Bash
#! /bin/sh
|
|
exec 2>&1
|
|
. ./config
|
|
|
|
# Ensure that dnscache has source of randomness to initialise its source
|
|
# port RNG
|
|
test -f ./seed || /bin/dd if=/dev/urandom bs=128 count=1 of=seed
|
|
exec<./seed
|
|
|
|
# http://marc.theaimsgroup.com/?l=djbdns&m=104812086607532&w=2
|
|
trap "" SIGPIPE
|
|
exec envuidgid dnscache softlimit -o250 -d "$DATALIMIT" /usr/local/bin/dnscache
|