X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Fmunin-node%2Fmanifests%2Finit.pp;h=72dbce1cbde6b398f5befb26faacb6412a71860e;hb=b971cc837b8783402899e0aba3755a1f89ca1e27;hp=06d47cedf8a9d8e79d91ac6bd59f9a1fbc95e07a;hpb=d32e60a1ea92152c0d878634be27a1319fce2e71;p=mirror%2Fdsa-puppet.git diff --git a/modules/munin-node/manifests/init.pp b/modules/munin-node/manifests/init.pp index 06d47cedf..72dbce1cb 100644 --- a/modules/munin-node/manifests/init.pp +++ b/modules/munin-node/manifests/init.pp @@ -26,9 +26,6 @@ class munin-node { activate_munin_check { "cpu":; - "df":; - "df_abs":; - "df_inode":; "entropy":; "forks":; "interrupts":; @@ -54,7 +51,13 @@ class munin-node { case $vsftpd { "true": { - include munin-node::vsftpd + package { + "logtail": ensure => installed; + } + activate_munin_check { + "vsftpd":; + "ps_vsftpd": script => "ps_"; + } } } @@ -68,6 +71,25 @@ class munin-node { content => template("munin-node/munin-node.plugin.conf.erb"), require => Package["munin-node"], notify => Exec["munin-node restart"]; + + "/etc/munin/plugins/df": + source => "puppet:///modules/munin-node/df-wrap", + mode => 555, + require => Package["munin-node"], + notify => Exec["munin-node restart"] + ; + "/etc/munin/plugins/df_abs": + source => "puppet:///modules/munin-node/df-wrap", + mode => 555, + require => Package["munin-node"], + notify => Exec["munin-node restart"] + ; + "/etc/munin/plugins/df_inode": + source => "puppet:///modules/munin-node/df-wrap", + mode => 555, + require => Package["munin-node"], + notify => Exec["munin-node restart"] + ; } exec { "munin-node restart": @@ -76,12 +98,17 @@ class munin-node { } @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, } } +# vim:set et: +# vim:set sts=4 ts=4: +# vim:set shiftwidth=4: