syslog-ng: define fastly destination on all log hosts, not just lully
[mirror/dsa-puppet.git] / modules / named / manifests / geodns.pp
index a0c6d12..649268a 100644 (file)
@@ -7,13 +7,6 @@ class named::geodns inherits named {
                ensure => installed,
        }
 
-       #site::aptrepo { 'geoip':
-       #       url        => 'http://db.debian.org/debian-admin',
-       #       suite      => 'lenny-bind-geoip',
-       #       components => 'main',
-       #}
-       site::aptrepo { 'geoip': ensure => absent }
-
        file { '/etc/bind/':
                ensure  => directory,
                group  => bind,
@@ -33,9 +26,16 @@ class named::geodns inherits named {
                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',
-               notify  => Service['bind9'],
+        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,
@@ -56,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
        }
 }