Include local shared keys on primary
[mirror/dsa-puppet.git] / modules / named / manifests / authoritative.pp
index 5a38141..08b9236 100644 (file)
@@ -1,22 +1,7 @@
 class named::authoritative inherits named {
-       file { '/etc/bind/named.conf.debian-zones':
-               content => template('named/named.conf.debian-zones.erb'),
-               notify  => Service['bind9'],
-       }
-       file { '/etc/bind/named.conf.options':
-               content => template('named/named.conf.options.erb'),
-               notify  => Service['bind9'],
-       }
        file { '/etc/bind/named.conf.shared-keys':
                mode    => '0640',
                owner   => root,
                group   => bind,
        }
-       file { '/etc/bind/named.conf.puppet-shared-keys':
-               mode    => '0640',
-               content => template('named/named.conf.puppet-shared-keys.erb'),
-               owner   => root,
-               group   => bind,
-               notify  => Service['bind9'],
-       }
 }