Hi,
I think owners file structure in named for FreeBSD changed.
I just note multitude of warnings like:
Quote:
Apr 7 03:01:34 ns1 named[25726]: starting BIND 9.6.1-P2 -u bind
Apr 7 03:01:34 ns1 named[25726]: built with '--prefix=/usr' '--infodir=/usr/share/info' '--mandir=/usr/share/man' '--enable-threads' '--disable-ipv6' '--enable-getifaddrs' '--disable-linux-caps' '--with-openssl=/usr' '--with-randomdev=/dev/random' '--without-idn' '--without-libxml2'
Apr 7 03:01:34 ns1 named[25726]: the working directory is not writable
Easy to solve, just edit new owner file structure:
Code:
# cd /var/named/
# chown bind:wheel .
# chown -R bind:wheel *
# chmod -R g+w *
# chmod -R g+r *
And replace in /etc/mtree/BIND.chroot.dist
Quote:
/set type=dir uname=root gname=wheel mode=0755
for
Quote:
/set type=dir uname=bind gname=wheel mode=0755
Now, all is ok

BerMeJo