X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Fmunin-node%2Fmanifests%2Finit.pp;h=cde57774f82322e39bd06999c820feb66e055d3a;hb=615c9841345b2ac0c3330c65726aa89b0ad7e13b;hp=020b8270020532032bb278e07a3f159c06c20432;hpb=14b9d60ed88376a87c5643ea6731d5b0902ad312;p=mirror%2Fdsa-puppet.git diff --git a/modules/munin-node/manifests/init.pp b/modules/munin-node/manifests/init.pp index 020b82700..cde57774f 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"]; } } @@ -52,15 +52,26 @@ class munin-node { } } + case $vsftpd { + "true": { + package { + "logtail": ensure => installed; + } + activate_munin_check { + "vsftpd":; + "ps_vsftpd": script => "ps_"; + } + } + } + file { "/etc/munin/munin-node.conf": - source => [ "puppet:///munin-node/per-host/$fqdn/munin-node.conf", - "puppet:///munin-node/common/munin-node.conf" ], + content => template("munin-node/munin-node.conf.erb"), require => Package["munin-node"], notify => Exec["munin-node restart"]; "/etc/munin/plugin-conf.d/munin-node": - content => template("munin/munin-node.plugin.conf.erb"), + content => template("munin-node/munin-node.plugin.conf.erb"), require => Package["munin-node"], notify => Exec["munin-node restart"]; } @@ -69,5 +80,17 @@ class munin-node { path => "/etc/init.d:/usr/bin:/usr/sbin:/bin:/sbin", refreshonly => true, } + @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; }" + } + @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; }" + } } +# vim:set et: +# vim:set sts=4 ts=4: +# vim:set shiftwidth=4: