X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Fnamed%2Fmanifests%2Fgeodns.pp;h=7b6324c1bffd27a13f7d2d049584d362c82c6ec1;hb=e4d38fd267b7b5aa6943e2d14c9dfb2bab96a206;hp=5f9b0f6a0977937cdd6e78275ed448be7d4a6a35;hpb=d220059ff5b81cfddedd4c573163e07892074a58;p=mirror%2Fdsa-puppet.git diff --git a/modules/named/manifests/geodns.pp b/modules/named/manifests/geodns.pp index 5f9b0f6a0..7b6324c1b 100644 --- a/modules/named/manifests/geodns.pp +++ b/modules/named/manifests/geodns.pp @@ -3,6 +3,10 @@ class named::geodns inherits named { script => bind } + package { 'geoip-database': + ensure => installed, + } + #site::aptrepo { 'geoip': # url => 'http://db.debian.org/debian-admin', # suite => 'lenny-bind-geoip', @@ -23,12 +27,22 @@ class named::geodns inherits named { } file { '/etc/bind/named.conf.options': content => template('named/named.conf.options.erb'), + notify => Service['bind9'], } file { '/etc/bind/named.conf.local': source => 'puppet:///modules/named/common/named.conf.local', + notify => Service['bind9'], } - file { '/etc/bind/named.conf.acl': - source => 'puppet:///modules/named/common/named.conf.acl', + if (versioncmp($::lsbmajdistrelease, '9') >= 0) { + file { '/etc/bind/named.conf.acl': + source => 'puppet:///modules/named/common/named.conf.acl', + notify => Service['bind9'], + } + } else { + file { '/etc/bind/named.conf.acl': + source => 'puppet:///modules/named/common/named.conf.acl.bind99', + notify => Service['bind9'], + } } file { '/etc/bind/geodns/zonefiles': ensure => directory, @@ -38,6 +52,7 @@ class named::geodns inherits named { } file { '/etc/bind/geodns/named.conf.geo': source => 'puppet:///modules/named/common/named.conf.geo', + notify => Service['bind9'], } file { '/etc/bind/geodns/trigger': mode => '0555', @@ -49,6 +64,12 @@ class named::geodns inherits named { mode => '0440', } file { '/etc/cron.d/dsa-boot-geodnssync': - source => 'puppet:///modules/named/common/cron-geo' + ensure => absent; + } + concat::fragment { 'dsa-puppet-stuff--geodns-boot': + target => '/etc/cron.d/dsa-puppet-stuff', + content => @(EOF) + @reboot geodnssync sleep 1m && /etc/bind/geodns/trigger > /dev/null + | EOF } }