In FreeBSD 7.2 the following rc.conf entries worked find:
This started up without any problems.
With the release of FreeBSD-7.3, the -c option has been assigned its own variable. I didn't think much of it and just made the change:
This bombs out with the following error:
I've been going over the rc.d/named script for a couple of hours now and I can't figure out why I'm getting this error or how to fix it.
Does anyone have a suggestion?
P.S. The following direct command runs fine:
Code:
named_enable="YES"
named_flags="-c /etc/named.conf"
named_chrootdir="/usr/home/bind"
This started up without any problems.
With the release of FreeBSD-7.3, the -c option has been assigned its own variable. I didn't think much of it and just made the change:
Code:
named_enable="YES"
named_conf="/etc/named.conf"
named_chrootdir="/usr/home/bind"
This bombs out with the following error:
Code:
server# /etc/rc.d/named start
/etc/rc.d/named: WARNING: /etc/named.conf is not readable.
I've been going over the rc.d/named script for a couple of hours now and I can't figure out why I'm getting this error or how to fix it.
Does anyone have a suggestion?
P.S. The following direct command runs fine:
Code:
/usr/sbin/named -u bind -c /etc/named.conf -t /usr/home/bind