X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=modules%2Fnamed%2Fmanifests%2Finit.pp;h=41cec9a8796a506017deeb303f6a2776d774d3be;hb=fa3bd8c2a8a250493cd1aa0e49b6a368ad10958e;hp=49911f8b51f2f7e010facc70b5b1b42d18027dda;hpb=49922b83ef7b7c817e88210ac363f935cf11a110;p=dsa-puppet.git diff --git a/modules/named/manifests/init.pp b/modules/named/manifests/init.pp index 49911f8b..41cec9a8 100644 --- a/modules/named/manifests/init.pp +++ b/modules/named/manifests/init.pp @@ -2,9 +2,10 @@ class named { munin::check { 'bind': } site::aptrepo { 'bind-ratelimit': - url => 'http://db.debian.org/debian-admin', - suite => 'bind-ratelimit', - components => 'main', + ensure => absent, + #url => 'http://db.debian.org/debian-admin', + #suite => 'bind-ratelimit', + #components => 'main', } package { 'bind9': @@ -25,12 +26,12 @@ class named { @ferm::rule { '01-dsa-bind-4': domain => '(ip)', description => 'Allow nameserver access', - rule => '&TCP_UDP_SERVICE_RANGE(53, $HOST_DNS_SECONDARY_V4)', + rule => '&TCP_UDP_SERVICE_RANGE(53, ( $HOST_DNS_GEO_V4 $HOST_NAGIOS_V4 $HOST_RCODE0_V4 $HOST_EASYDNS_V4 $HOST_NETNOD_V4 5.153.231.21 ) )', } @ferm::rule { '01-dsa-bind-6': domain => '(ip6)', description => 'Allow nameserver access', - rule => '&TCP_UDP_SERVICE_RANGE(53, $HOST_DNS_SECONDARY_V6)', + rule => '&TCP_UDP_SERVICE_RANGE(53, ( $HOST_DNS_GEO_V6 $HOST_NAGIOS_V6 $HOST_RCODE0_V6 2001:41c8:1000:21::21:21 ) )', } } else { @ferm::rule { '01-dsa-bind': @@ -62,4 +63,12 @@ class named { group => bind, mode => '0775', } + + 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'], + } }