X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Fmunin%2Fmanifests%2Finit.pp;h=2ae6429815176be7c5c16358ee61eeae488c5090;hb=49247ca52114710ffbc6c006aa52e182ea24144b;hp=aa7dbdbf30f715c95b2cb9ca42704c61adb6a270;hpb=98084fe27d72ced18fbf86d63be56d91d59d8852;p=mirror%2Fdsa-puppet.git diff --git a/modules/munin/manifests/init.pp b/modules/munin/manifests/init.pp index aa7dbdbf3..2ae642981 100644 --- a/modules/munin/manifests/init.pp +++ b/modules/munin/manifests/init.pp @@ -9,6 +9,23 @@ class munin { require => Package['munin-node'], } + $owner = $::lsbdistcodename ? { + squeeze => munin, + wheezy => root + } + + $gid = $::lsbdistcodename ? { + squeeze => adm, + wheezy => 'www-data', + } + + 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'], @@ -30,14 +47,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, } }