ssl slapd: load hbd backend module, disable db and backend specific config
[mirror/dsa-puppet.git] / modules / named / manifests / geodns.pp
index b00d727..649268a 100644 (file)
@@ -3,10 +3,8 @@ class named::geodns inherits named {
                script => bind
        }
 
-       site::aptrepo { 'geoip':
-               url        => 'http://db.debian.org/debian-admin',
-               suite      => 'lenny-bind-geoip',
-               components => 'main',
+       package { 'geoip-database':
+               ensure => installed,
        }
 
        file { '/etc/bind/':
@@ -22,12 +20,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,
@@ -37,6 +45,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',
@@ -47,7 +56,11 @@ class named::geodns inherits named {
                group  => geodnssync,
                mode   => '0440',
        }
-       file { '/etc/cron.d/dsa-boot-geodnssync':
-               source => 'puppet:///modules/named/common/cron-geo'
+       file { '/etc/cron.d/dsa-boot-geodnssync': 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
        }
 }