diff options
author | Michael Scherer <misc@mageia.org> | 2010-10-27 16:26:51 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2010-10-27 16:26:51 +0000 |
commit | d7d23683fc0f0c1f74f53e8c3cddb459849ac825 (patch) | |
tree | 4d54d0926ee6e750f975787963f48f067c2fcd32 /modules/bind | |
parent | 365f001f49c9d440f8b493124d4e115c7219d342 (diff) | |
download | puppet-d7d23683fc0f0c1f74f53e8c3cddb459849ac825.tar puppet-d7d23683fc0f0c1f74f53e8c3cddb459849ac825.tar.gz puppet-d7d23683fc0f0c1f74f53e8c3cddb459849ac825.tar.bz2 puppet-d7d23683fc0f0c1f74f53e8c3cddb459849ac825.tar.xz puppet-d7d23683fc0f0c1f74f53e8c3cddb459849ac825.zip |
- fix the configuration file ( guess next time, I will go to sleep instead of working during the night )
Diffstat (limited to 'modules/bind')
-rw-r--r-- | modules/bind/templates/named_base.conf | 3 | ||||
-rw-r--r-- | modules/bind/templates/named_master.conf | 4 |
2 files changed, 3 insertions, 4 deletions
diff --git a/modules/bind/templates/named_base.conf b/modules/bind/templates/named_base.conf index b14a9bc9..3eb30478 100644 --- a/modules/bind/templates/named_base.conf +++ b/modules/bind/templates/named_base.conf @@ -2,7 +2,7 @@ include "/etc/rndc.key"; controls { inet 127.0.0.1 port 953 - allow { 127.0.0.1; } keys { key; }; + allow { 127.0.0.1; } keys { mykey; }; }; @@ -79,7 +79,6 @@ options { // listen-on { none; }; // listen-on-v6 { any; }; - auth-nxdomain yes; // allow-query { trusted_networks; }; allow-transfer {"none";}; diff --git a/modules/bind/templates/named_master.conf b/modules/bind/templates/named_master.conf index 993a71b3..f5219e94 100644 --- a/modules/bind/templates/named_master.conf +++ b/modules/bind/templates/named_master.conf @@ -1,12 +1,12 @@ zone "mageia.org" IN { type master; - file "master/mageia.org"; + file "master/mageia.org.zone"; allow-update { none; }; }; zone "mageia.fr" IN { type master; - file "master/mageia.fr"; + file "master/mageia.fr.zone"; allow-update { none; }; }; |