Skip to content

Commit 993b7d3

Browse files
committed
Fix named_directory usage
similar to e573baf was broken by 019e1e4
1 parent a7041da commit 993b7d3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

bind/files/arch/named.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// vim:set ts=4 sw=4 et:
22

33
options {
4-
directory "{{ named_directory }}";
4+
directory "{{ map.get('named_directory') }}";
55
pid-file "/run/named/named.pid";
66

77
// Uncomment these to enable IPv6 connections support

bind/files/freebsd/named.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
options {
1212
// All file and path names are relative to the chroot directory,
1313
// if any, and should be fully qualified.
14-
directory "{{ named_directory }}";
14+
directory "{{ map.get('named_directory') }}";
1515
pid-file "/var/run/named/pid";
1616
dump-file "/var/dump/named_dump.db";
1717
statistics-file "/var/stats/named.stats";

bind/files/suse/named.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ options {
1818

1919
# The directory statement defines the name server's working directory
2020

21-
directory "{{ named_directory }}";
21+
directory "{{ map.get('named_directory') }}";
2222

2323
# enable DNSSEC validation
2424
#

0 commit comments

Comments
 (0)