skroutz does not need nopat
[mirror/dsa-puppet.git] / modules / named / manifests / geodns.pp
index 0a78823..2466193 100644 (file)
@@ -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',
@@ -29,9 +33,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,