X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Funbound%2Fmanifests%2Finit.pp;h=667abc11fe6694658e42c0d0d74e76bb81a78132;hb=f2c3ac3b6d62f9e0d049e370aa031daea503b7c7;hp=08f3e4acae76e24eb0acf3aac99c96ad4895cc3a;hpb=e05673fceab5b68e33fb5ed4661ede6217fb919e;p=mirror%2Fdsa-puppet.git diff --git a/modules/unbound/manifests/init.pp b/modules/unbound/manifests/init.pp index 08f3e4aca..667abc11f 100644 --- a/modules/unbound/manifests/init.pp +++ b/modules/unbound/manifests/init.pp @@ -10,6 +10,7 @@ class unbound { $is_recursor = getfromhash($site::nodeinfo, 'misc', 'resolver-recursive') $client_ranges = hiera('allow_dns_query') + $empty_client_range = empty($client_ranges) $ns = hiera('nameservers') package { 'unbound': @@ -22,6 +23,11 @@ class unbound { pattern => 'unbound', } + file { '/etc/init.d/unbound': + source => 'puppet:///modules/unbound/unbound.init', + mode => '0555', + notify => Exec['systemctl daemon-reload'], + } file { '/var/lib/unbound': ensure => directory, owner => unbound, @@ -45,6 +51,14 @@ class unbound { mode => '0644', source => 'puppet:///modules/unbound/debian.org.key' } + file { '/var/lib/unbound/29.172.in-addr.arpa.key': + ensure => present, + replace => false, + owner => unbound, + group => unbound, + mode => '0644', + source => 'puppet:///modules/unbound/29.172.in-addr.arpa.key' + } file { '/etc/unbound/unbound.conf': content => template('unbound/unbound.conf.erb'), require => [ @@ -55,7 +69,7 @@ class unbound { notify => Service['unbound'] } - if ($is_recursor and not $client_ranges.empty?) { + if ($is_recursor and !$empty_client_range) { @ferm::rule { 'dsa-dns': domain => 'ip', description => 'Allow nameserver access',