]> git.donarmstrong.com Git - dsa-puppet.git/blobdiff - modules/munin/manifests/init.pp
make the lint gods happy
[dsa-puppet.git] / modules / munin / manifests / init.pp
index 2bbb7d4545d4cda1673992fde980f5b1d3f20ff8..9684a2944424c25ab09ebcf5734217c0e0cf1a73 100644 (file)
@@ -9,14 +9,16 @@ class munin {
                require => Package['munin-node'],
        }
 
-       $owner = lsbdistcodename ? {
+       $owner = $::lsbdistcodename ? {
                squeeze => munin,
-               wheezy  => root
+               wheezy  => root,
+               undef => munin,
        }
 
-       $gid = lsbdistcodename ? {
+       $gid = $::lsbdistcodename ? {
                squeeze => adm,
                wheezy  => 'www-data',
+               undef => adm,
        }
 
        file { '/var/log/munin':
@@ -57,4 +59,21 @@ class munin {
                rule            => 'proto tcp mod state state (NEW) dport (munin) @subchain \'munin\' { saddr ($HOST_MUNIN_V6 $HOST_NAGIOS_V6) ACCEPT; }',
                notarule        => true,
        }
+
+       @@munin::master-per-node {
+               $::fqdn:
+                       ipaddress   => $::ipaddress,
+                       munin_async => $::munin_async,
+                       ;
+       }
+
+       if $::munin_async and str2bool($::munin_async) == true {
+               file { '/etc/ssh/userkeys/munin-async':
+                       source => 'puppet:///modules/munin/munin-async-authkeys',
+               }
+       } else {
+               file { '/etc/ssh/userkeys/munin-async':
+                       ensure => 'absent',
+               }
+       }
 }