Create /var/unbound/conf.d for additional configuration files.

Ensure that it is used if present.

MFH:	3 weeks
This commit is contained in:
Dag-Erling Smørgrav 2014-05-29 22:34:04 +00:00
parent c6317b8376
commit 9b17fa8f3c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=266863
2 changed files with 13 additions and 2 deletions

View File

@ -96,6 +96,8 @@
..
..
unbound uname=unbound gname=unbound mode=0755
conf.d uname=unbound gname=unbound mode=0755
..
..
yp
..

View File

@ -34,6 +34,7 @@ user=""
unbound_conf=""
forward_conf=""
workdir=""
confdir=""
chrootdir=""
anchor=""
pidfile=""
@ -55,6 +56,7 @@ bkext=$(date "+%Y%m%d.%H%M%S")
set_defaults() {
: ${user:=unbound}
: ${workdir:=/var/unbound}
: ${confdir:=${workdir}/conf.d}
: ${unbound_conf:=${workdir}/unbound.conf}
: ${forward_conf:=${workdir}/forward.conf}
: ${anchor:=${workdir}/root.key}
@ -195,6 +197,9 @@ gen_unbound_conf() {
if [ -f "${forward_conf}" ] ; then
echo "include: ${forward_conf}"
fi
if [ -d "${confdir}" ] ; then
echo "include: ${confdir}/*.conf"
fi
}
#
@ -227,7 +232,8 @@ usage() {
echo "options:"
echo " -n do not start unbound"
echo " -a path full path to trust anchor file"
echo " -c path full path to unbound configuration"
echo " -C path full path to additional configuration directory"
echo " -c path full path to unbound configuration file"
echo " -f path full path to forwarding configuration"
echo " -p path full path to pid file"
echo " -R path full path to resolvconf.conf"
@ -247,11 +253,14 @@ main() {
#
# Parse and validate command-line options
#
while getopts "a:c:f:np:R:r:s:u:w:" option ; do
while getopts "a:C:c:f:np:R:r:s:u:w:" option ; do
case $option in
a)
anchor="$OPTARG"
;;
C)
confdir="$OPTARG"
;;
c)
unbound_conf="$OPTARG"
;;