X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Fmunin%2Fmanifests%2Finit.pp;h=8730f53f36349764cf8f20dfc578b756140de2db;hb=d63828e8e785df25d1cbe2b2f07208834d851706;hp=62805de2b2872ba1e6d41480aa9f8cb3f3d07fd7;hpb=2bd7dac7ee73ba48b8b276465668c023147a0896;p=mirror%2Fdsa-puppet.git diff --git a/modules/munin/manifests/init.pp b/modules/munin/manifests/init.pp index 62805de2b..8730f53f3 100644 --- a/modules/munin/manifests/init.pp +++ b/modules/munin/manifests/init.pp @@ -59,4 +59,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 >= 7 { + package { 'munin-async': + ensure => installed + } + file { '/etc/ssh/userkeys/munin-async': + source => 'puppet:///modules/munin/munin-async-authkeys', + } + } }