X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Funbound%2Fmanifests%2Finit.pp;h=667abc11fe6694658e42c0d0d74e76bb81a78132;hb=b574c5c4e66ce62bcc56350aa966afb58752c4a2;hp=03ae86c09a00fa6465afa2e437e0d3c4f1c25dc9;hpb=05faa1898f975f27c9ccbec5b4e45ac776d64b4e;p=mirror%2Fdsa-puppet.git diff --git a/modules/unbound/manifests/init.pp b/modules/unbound/manifests/init.pp index 03ae86c09..667abc11f 100644 --- a/modules/unbound/manifests/init.pp +++ b/modules/unbound/manifests/init.pp @@ -1,52 +1,84 @@ -class unbouned { - package { - unbound: ensure => installed; - } +# = Class: unbound +# +# This class installs and configures unbound +# +# == Sample Usage: +# +# include unbound +# +class unbound { - exec { - "unbound restart": - path => "/etc/init.d:/usr/bin:/usr/sbin:/bin:/sbin", - refreshonly => true, - ; - } - file { - "/var/lib/unbound": - ensure => directory, - owner => unbound, - group => unbound, - mode => 775, - ; - "/var/lib/unbound/root.key": - ensure => present, - replace => false, - owner => unbound, - group => unbound, - mode => 644, - # IANA root trust anchor, valid from 2010-07-15T00:00:00+00:00 - # downloaded from https://data.iana.org/root-anchors/root-anchors.xml - content => ". IN DS 19036 8 2 49AAC11D7B6F6446702E54A1607371607A1A41855200FD2CE1CDDE32F24E8FB5\n", - notify => Exec["unbound restart"], - ; - "/var/lib/unbound/debian.org.key": - ensure => present, - replace => false, - owner => unbound, - group => unbound, - mode => 644, - # debian.org DS record, July 2010' - content => "debian.org. IN DS 5283 7 2 3DC987A633914C195D03EA129E92327630D3428E92884A5E97829A55701F9E8A\n", - notify => Exec["unbound restart"], - ; - "/etc/unbound/unbound.conf": - content => template("unbound/unbound.conf.erb"), - require => Package["unbound"], - notify => Exec["unbound restart"], - owner => root, - group => root, - ; - } -} + $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': + ensure => installed + } + + service { 'unbound': + ensure => running, + hasstatus => false, + pattern => 'unbound', + } -# vim:set et: -# vim:set sts=4 ts=4: -# vim:set shiftwidth=4: + 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, + group => unbound, + require => Package['unbound'], + mode => '0775', + } + file { '/var/lib/unbound/root.key': + ensure => present, + replace => false, + owner => unbound, + group => unbound, + mode => '0644', + source => 'puppet:///modules/unbound/root.key' + } + file { '/var/lib/unbound/debian.org.key': + ensure => present, + replace => false, + owner => unbound, + group => 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 => [ + Package['unbound'], + File['/var/lib/unbound/root.key'], + File['/var/lib/unbound/debian.org.key'] + ], + notify => Service['unbound'] + } + + if ($is_recursor and !$empty_client_range) { + @ferm::rule { 'dsa-dns': + domain => 'ip', + description => 'Allow nameserver access', + rule => sprintf('&TCP_UDP_SERVICE_RANGE(53, (%s))', join_spc(filter_ipv4($client_ranges))), + } + @ferm::rule { 'dsa-dns6': + domain => 'ip6', + description => 'Allow nameserver access', + rule => sprintf('&TCP_UDP_SERVICE_RANGE(53, (%s))', join_spc(filter_ipv6($client_ranges))), + } + } +}