]> git.donarmstrong.com Git - dsa-puppet.git/blobdiff - modules/munin/manifests/init.pp
Make it work with jessie, II
[dsa-puppet.git] / modules / munin / manifests / init.pp
index 62805de2b2872ba1e6d41480aa9f8cb3f3d07fd7..2522138345fe1e83e0325bbf781fdf7b548be8b6 100644 (file)
@@ -11,14 +11,12 @@ class munin {
 
        $owner = $::lsbdistcodename ? {
                squeeze => munin,
-               wheezy  => root,
-               undef => munin,
+               default  => root,
        }
 
        $gid = $::lsbdistcodename ? {
                squeeze => adm,
-               wheezy  => 'www-data',
-               undef => adm,
+               default => 'www-data',
        }
 
        file { '/var/log/munin':
@@ -40,6 +38,11 @@ class munin {
                notify  => Service['munin-node'],
        }
 
+       file { '/etc/logrotate.d/munin-node':
+               source => 'puppet:///modules/munin/logrotate',
+               require => Package['munin-node'],
+       }
+
        file { [ '/etc/munin/plugins/df', '/etc/munin/plugins/df_abs', '/etc/munin/plugins/df_inode' ]:
                source => 'puppet:///modules/munin/df-wrap',
                mode    => '0555',
@@ -59,4 +62,29 @@ 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',
+       #       }
+       #}
+       if $::lsbmajdistrelease == "testing" or $::lsbmajdistrelease >= 7 {
+               package { 'munin-async':
+                       ensure => installed
+               }
+               file { '/etc/ssh/userkeys/munin-async':
+                       source => 'puppet:///modules/munin/munin-async-authkeys',
+               }
+       }
 }