X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Fnamed%2Fmanifests%2Fauthoritative.pp;h=5a3814107b8e34e572fc832543c25ca0452960f6;hb=de168787833dddc604663b6ee79e7abdaf158737;hp=a1024d88a955e2a32dcf877b76f68568687dc528;hpb=3eb533e5499e66423bafdedaf6c7d08ead1772de;p=mirror%2Fdsa-puppet.git diff --git a/modules/named/manifests/authoritative.pp b/modules/named/manifests/authoritative.pp index a1024d88a..5a3814107 100644 --- a/modules/named/manifests/authoritative.pp +++ b/modules/named/manifests/authoritative.pp @@ -1,6 +1,6 @@ class named::authoritative inherits named { file { '/etc/bind/named.conf.debian-zones': - source => 'puppet:///modules/named/common/named.conf.debian-zones', + content => template('named/named.conf.debian-zones.erb'), notify => Service['bind9'], } file { '/etc/bind/named.conf.options': @@ -12,4 +12,11 @@ class named::authoritative inherits named { 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'], + } }