More munin stuff, supporting munin-async if it is on the client
[mirror/dsa-puppet.git] / modules / munin / manifests / init.pp
index d5df24e..8258f9b 100644 (file)
@@ -60,5 +60,20 @@ class munin {
                notarule        => true,
        }
 
-       @@munin::master-per-node { $::fqdn: }
+       @@munin::master-per-node {
+               $::fqdn:
+                       ipaddress => $::ipaddress,
+                       munin_async => $::munin_async,
+                       ;
+       }
+
+       if $munin_async and $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',
+               }
+       }
 }