whitespace/quoting: modules/named/manifests/ (make lint happy)
[mirror/dsa-puppet.git] / modules / named / manifests / geodns.pp
index ef2fa14..1611be1 100644 (file)
@@ -1,63 +1,63 @@
 class named::geodns inherits named {
-       munin::check { 'bind_views':
-               script => bind
-       }
+  munin::check { 'bind_views':
+    script => bind
+  }
 
-       package { 'geoip-database':
-               ensure => installed,
-       }
+  package { 'geoip-database':
+    ensure => installed,
+  }
 
-       file { '/etc/bind/':
-               ensure  => directory,
-               group  => bind,
-               mode   => '2755',
-               require => Package['bind9'],
-               notify  => Service['bind9'],
-       }
-       file { '/etc/bind/geodns':
-               ensure => directory,
-               mode   => '0755',
-       }
-       file { '/etc/bind/named.conf.local':
-               source => 'puppet:///modules/named/common/named.conf.local',
-               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,
-               owner  => geodnssync,
-               group  => geodnssync,
-               mode   => '2755',
-       }
-       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',
-               source => 'puppet:///modules/named/common/trigger',
-       }
-       file { '/etc/cron.d/dsa-boot-geodnssync': ensure => absent; }
-       concat::fragment { 'puppet-crontab--geodns-boot':
-               target => '/etc/cron.d/puppet-crontab',
-               content  => @(EOF)
-                       @reboot geodnssync sleep 1m && /etc/bind/geodns/trigger > /dev/null
-                       | EOF
-       }
+  file { '/etc/bind/':
+    ensure  => directory,
+    group   => bind,
+    mode    => '2755',
+    require => Package['bind9'],
+    notify  => Service['bind9'],
+  }
+  file { '/etc/bind/geodns':
+    ensure => directory,
+    mode   => '0755',
+  }
+  file { '/etc/bind/named.conf.local':
+    source => 'puppet:///modules/named/common/named.conf.local',
+    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,
+    owner  => geodnssync,
+    group  => geodnssync,
+    mode   => '2755',
+  }
+  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',
+    source => 'puppet:///modules/named/common/trigger',
+  }
+  file { '/etc/cron.d/dsa-boot-geodnssync': ensure => absent; }
+  concat::fragment { 'puppet-crontab--geodns-boot':
+    target  => '/etc/cron.d/puppet-crontab',
+    content => @(EOF)
+      @reboot geodnssync sleep 1m && /etc/bind/geodns/trigger > /dev/null
+      | EOF
+  }
 
-       ferm::rule { '01-dsa-bind':
-               domain      => '(ip ip6)',
-               description => 'Allow nameserver access',
-               rule        => '&TCP_UDP_SERVICE(53)'
-       }
+  ferm::rule { '01-dsa-bind':
+    domain      => '(ip ip6)',
+    description => 'Allow nameserver access',
+    rule        => '&TCP_UDP_SERVICE(53)'
+  }
 }