]> 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 d5df24ef8741b23fd137cc813613b6434633f21b..9684a2944424c25ab09ebcf5734217c0e0cf1a73 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',
+               }
+       }
 }