X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Fnamed%2Fmanifests%2Fauthoritative.pp;h=08b9236fc3e8991e5225688125243f424f8e535e;hb=e34d8e0cd1246d068196493701922e4e1645b9e6;hp=4ffba00dc81e7319c2c57adddf6859fe4d605d01;hpb=7b4f24c7e7b0a1e9f85bd2c46d97714a4cebff0f;p=mirror%2Fdsa-puppet.git diff --git a/modules/named/manifests/authoritative.pp b/modules/named/manifests/authoritative.pp index 4ffba00dc..08b9236fc 100644 --- a/modules/named/manifests/authoritative.pp +++ b/modules/named/manifests/authoritative.pp @@ -1,20 +1,7 @@ class named::authoritative inherits named { - file { - "/etc/bind/named.conf.debian-zones": - source => [ "puppet:///modules/named/per-host/$fqdn/named.conf.debian-zones", - "puppet:///modules/named/common/named.conf.debian-zones" ], - notify => Exec["bind9 reload"]; - "/etc/bind/named.conf.options": - content => template("named/named.conf.options.erb"), - notify => Exec["bind9 reload"]; - } - file { "/etc/bind/named.conf.shared-keys": - mode => 640, - owner => root, - group => bind, - } + file { '/etc/bind/named.conf.shared-keys': + mode => '0640', + owner => root, + group => bind, + } } - -# vim:set et: -# vim:set sts=4 ts=4: -# vim:set shiftwidth=4: