Merge branch 'static'
[mirror/dsa-puppet.git] / modules / munin / manifests / init.pp
index d5df24e..9684a29 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 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',
+               }
+       }
 }