mirror of
https://github.com/saltstack-formulas/bind-formula.git
synced 2025-04-17 10:10:26 +00:00
Fix named_directory usage
similar toe573baf26d
was broken by019e1e4a58
This commit is contained in:
parent
a7041da355
commit
993b7d339d
3 changed files with 3 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
|||
// vim:set ts=4 sw=4 et:
|
||||
|
||||
options {
|
||||
directory "{{ named_directory }}";
|
||||
directory "{{ map.get('named_directory') }}";
|
||||
pid-file "/run/named/named.pid";
|
||||
|
||||
// Uncomment these to enable IPv6 connections support
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
options {
|
||||
// All file and path names are relative to the chroot directory,
|
||||
// if any, and should be fully qualified.
|
||||
directory "{{ named_directory }}";
|
||||
directory "{{ map.get('named_directory') }}";
|
||||
pid-file "/var/run/named/pid";
|
||||
dump-file "/var/dump/named_dump.db";
|
||||
statistics-file "/var/stats/named.stats";
|
||||
|
|
|
@ -18,7 +18,7 @@ options {
|
|||
|
||||
# The directory statement defines the name server's working directory
|
||||
|
||||
directory "{{ named_directory }}";
|
||||
directory "{{ map.get('named_directory') }}";
|
||||
|
||||
# enable DNSSEC validation
|
||||
#
|
||||
|
|
Loading…
Add table
Reference in a new issue