[net-dns/bind] fix paths

This commit is contained in:
Robert Förster 2024-09-02 17:31:56 +02:00
parent 88bd423204
commit 8993dd075b
2 changed files with 4 additions and 4 deletions

View File

@ -3,7 +3,7 @@
//}; //};
options { options {
directory "/var/cache/bind"; directory "/var/bind";
pid-file "/run/named/named.pid"; pid-file "/run/named/named.pid";
listen-on { 127.0.0.1; }; listen-on { 127.0.0.1; };

View File

@ -65,7 +65,7 @@ _umount() {
_get_pidfile() { _get_pidfile() {
# as suggested in bug #107724, bug 335398#c17 # as suggested in bug #107724, bug 335398#c17
[ -n "${PIDFILE}" ] || PIDFILE=${CHROOT}$(\ [ -n "${PIDFILE}" ] || PIDFILE=${CHROOT}$(\
/usr/sbin/named-checkconf -p ${CHROOT:+-t} ${CHROOT} ${NAMED_CONF#${CHROOT}} | grep 'pid-file' | cut -d\" -f2) /usr/bin/named-checkconf -p ${CHROOT:+-t} ${CHROOT} ${NAMED_CONF#${CHROOT}} | grep 'pid-file' | cut -d\" -f2)
[ -z "${PIDFILE}" ] && PIDFILE=${CHROOT}/run/named/named.pid [ -z "${PIDFILE}" ] && PIDFILE=${CHROOT}/run/named/named.pid
} }
@ -98,7 +98,7 @@ checkconfig() {
return 1 return 1
fi fi
/usr/sbin/named-checkconf ${CHROOT:+-t} ${CHROOT} ${NAMED_CONF#${CHROOT}} || { /usr/bin/named-checkconf ${CHROOT:+-t} ${CHROOT} ${NAMED_CONF#${CHROOT}} || {
eerror "named-checkconf failed! Please fix your config first." eerror "named-checkconf failed! Please fix your config first."
return 1 return 1
} }
@ -109,7 +109,7 @@ checkconfig() {
checkzones() { checkzones() {
ebegin "Checking named configuration and zones" ebegin "Checking named configuration and zones"
/usr/sbin/named-checkconf -z -j ${CHROOT:+-t} ${CHROOT} ${NAMED_CONF#${CHROOT}} /usr/bin/named-checkconf -z -j ${CHROOT:+-t} ${CHROOT} ${NAMED_CONF#${CHROOT}}
eend $? eend $?
} }