X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Fmunin-node%2Fmanifests%2Finit.pp;h=0849cc1bd235e6ca98075e7e7dc63ca28444fc43;hb=8e9a688dd67c65c08c9c4f90bf0f5a7df15549a5;hp=5b61d16783f48db779743bc60aa183994f4dc1cb;hpb=b507681f854f09cfc91da7b0b3a625c9d3c30022;p=mirror%2Fdsa-puppet.git diff --git a/modules/munin-node/manifests/init.pp b/modules/munin-node/manifests/init.pp index 5b61d1678..0849cc1bd 100644 --- a/modules/munin-node/manifests/init.pp +++ b/modules/munin-node/manifests/init.pp @@ -1,13 +1,13 @@ -define activate_munin_check($ensure=present, $script=$name) { +define activate_munin_check($ensure=present, $script = none) { case $script { - "": { $base = $name } - default: { $base = $script } + none: { $link = $name } + default: { $link = $script } } case $ensure { present: { file { "/etc/munin/plugins/$name": - ensure => "/usr/share/munin/plugins/$base", + ensure => "/usr/share/munin/plugins/$link", notify => Exec["munin-node restart"]; } } @@ -76,9 +76,9 @@ class munin-node { refreshonly => true, } ferm::rule { "dsa-munin": - description => "Allow munin-node from spohr.debian.org", - rule => "proto tcp dport 4949 saddr $HOST_MUNIN ACCEPT" - prio => "02" - } + domain => "(ip ip6)", + description => "Allow munin from munin master", + rule => "proto tcp mod state state (NEW) dport (munin) @subchain 'munin' { saddr (\$HOST_MUNIN) ACCEPT; }" + } }