put collect tag into ferm rule name
[mirror/dsa-puppet.git] / modules / named / manifests / init.pp
index 9b07e10..d425931 100644 (file)
@@ -38,6 +38,11 @@ class named {
                mode   => '0775',
        }
 
+       file { '/etc/bind/named.conf.options':
+               content => template('named/named.conf.options.erb'),
+               notify  => Service['bind9'],
+       }
+
        file { '/etc/bind/named.conf.puppet-shared-keys':
                mode    => '0640',
                content => template('named/named.conf.puppet-shared-keys.erb'),
@@ -45,4 +50,15 @@ class named {
                group   => bind,
                notify  => Service['bind9'],
        }
+
+       concat { '/etc/bind/named.conf.puppet-misc':
+               notify  => Service['bind9'],
+       }
+       concat::fragment { 'dsa-named-conf-puppet-misc---header':
+               target => '/etc/bind/named.conf.puppet-misc',
+               order  => '000',
+               content  => @(EOF)
+                       // THIS FILE IS UNDER PUPPET CONTROL. DON'T EDIT IT HERE.
+                       | EOF
+       }
 }