X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;ds=sidebyside;f=modules%2Fmunin%2Fmanifests%2Finit.pp;h=62805de2b2872ba1e6d41480aa9f8cb3f3d07fd7;hb=2bd7dac7ee73ba48b8b276465668c023147a0896;hp=1ba4477a02d789e81b57231892f6400915946eb6;hpb=3eb533e5499e66423bafdedaf6c7d08ead1772de;p=mirror%2Fdsa-puppet.git diff --git a/modules/munin/manifests/init.pp b/modules/munin/manifests/init.pp index 1ba4477a0..62805de2b 100644 --- a/modules/munin/manifests/init.pp +++ b/modules/munin/manifests/init.pp @@ -9,8 +9,27 @@ 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') + content => template('munin/munin-node.conf.erb'), require => Package['munin-node'], notify => Service['munin-node'], } @@ -30,14 +49,14 @@ class munin { @ferm::rule { 'dsa-munin-v4': description => 'Allow munin from munin master', - rule => 'proto tcp mod state state (NEW) dport (munin) @subchain 'munin' { saddr (\$HOST_MUNIN_V4 \$HOST_NAGIOS_V4) ACCEPT; }', + rule => 'proto tcp mod state state (NEW) dport (munin) @subchain \'munin\' { saddr ($HOST_MUNIN_V4 $HOST_NAGIOS_V4) ACCEPT; }', notarule => true, } @ferm::rule { 'dsa-munin-v6': description => 'Allow munin from munin master', domain => 'ip6', - rule => 'proto tcp mod state state (NEW) dport (munin) @subchain 'munin' { saddr (\$HOST_MUNIN_V6 \$HOST_NAGIOS_V6) ACCEPT; }', + rule => 'proto tcp mod state state (NEW) dport (munin) @subchain \'munin\' { saddr ($HOST_MUNIN_V6 $HOST_NAGIOS_V6) ACCEPT; }', notarule => true, } }