X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Fmunin%2Fmanifests%2Finit.pp;h=9684a2944424c25ab09ebcf5734217c0e0cf1a73;hb=99934ebb3a97a64a0d995792f65362e3d6778227;hp=ee50bd0a3109ba2dcda57f4b48e5d1fa0f3803ad;hpb=215ea6ef7a868fe83c46a02fa84a06e3e2631ed6;p=mirror%2Fdsa-puppet.git diff --git a/modules/munin/manifests/init.pp b/modules/munin/manifests/init.pp index ee50bd0a3..9684a2944 100644 --- a/modules/munin/manifests/init.pp +++ b/modules/munin/manifests/init.pp @@ -9,6 +9,25 @@ class munin { require => Package['munin-node'], } + $owner = $::lsbdistcodename ? { + squeeze => munin, + wheezy => root, + undef => munin, + } + + $gid = $::lsbdistcodename ? { + squeeze => adm, + wheezy => 'www-data', + undef => adm, + } + + file { '/var/log/munin': + ensure => directory, + owner => $owner, + group => $gid, + mode => '0755', + } + file { '/etc/munin/munin-node.conf': content => template('munin/munin-node.conf.erb'), require => Package['munin-node'], @@ -40,4 +59,21 @@ 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', + } + } }