Added session-keyfile statement into default named.conf since we use /run/named
Since we don't use default /var/run/named path for PID file, we should not use it also for Dynamic DNS session key. Therefore the following line was added into the named.conf: session-keyfile "/run/named/session.key"; Signed-off-by: Tomas Hozza <thozza@redhat.com>
This commit is contained in:
parent
09394b223a
commit
93a69bb161
1
.gitignore
vendored
1
.gitignore
vendored
@ -39,3 +39,4 @@ bind-9.7.2b1.tar.gz
|
|||||||
/bind-9.9.4rc1.tar.gz
|
/bind-9.9.4rc1.tar.gz
|
||||||
/bind-9.9.4rc2.tar.gz
|
/bind-9.9.4rc2.tar.gz
|
||||||
/bind-9.9.4.tar.gz
|
/bind-9.9.4.tar.gz
|
||||||
|
/config-12.tar.bz2
|
||||||
|
@ -797,6 +797,7 @@ rm -rf ${RPM_BUILD_ROOT}
|
|||||||
* Tue Oct 29 2013 Tomas Hozza <thozza@redhat.com> 32:9.9.4-4
|
* Tue Oct 29 2013 Tomas Hozza <thozza@redhat.com> 32:9.9.4-4
|
||||||
- Use upstream version of patch for previously fixed #794940
|
- Use upstream version of patch for previously fixed #794940
|
||||||
- Create symlink /var/named/chroot/var/run -> /var/named/chroot/run
|
- Create symlink /var/named/chroot/var/run -> /var/named/chroot/run
|
||||||
|
- Added session-keyfile statement into default named.conf since we use /run/named
|
||||||
|
|
||||||
* Fri Oct 18 2013 Tomas Hozza <thozza@redhat.com> 32:9.9.4-3
|
* Fri Oct 18 2013 Tomas Hozza <thozza@redhat.com> 32:9.9.4-3
|
||||||
- Fix race condition on send buffers in dighost.c (#794940)
|
- Fix race condition on send buffers in dighost.c (#794940)
|
||||||
|
@ -71,7 +71,10 @@ options
|
|||||||
/* Enable DLV by default, use built-in ISC DLV key. */
|
/* Enable DLV by default, use built-in ISC DLV key. */
|
||||||
dnssec-lookaside auto;
|
dnssec-lookaside auto;
|
||||||
|
|
||||||
|
/* In Fedora we use /run/named instead of default /var/run/named
|
||||||
|
so we have to configure paths properly. */
|
||||||
pid-file "/run/named/named.pid";
|
pid-file "/run/named/named.pid";
|
||||||
|
session-keyfile "/run/named/session.key";
|
||||||
|
|
||||||
managed-keys-directory "/var/named/dynamic";
|
managed-keys-directory "/var/named/dynamic";
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user