X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Fmunin-node%2Fmanifests%2Finit.pp;h=0849cc1bd235e6ca98075e7e7dc63ca28444fc43;hb=8e9a688dd67c65c08c9c4f90bf0f5a7df15549a5;hp=9035878f42fb02e621f992471555fabb5777c5d9;hpb=5cd06b56b52b1945fe15251776e7030619609983;p=mirror%2Fdsa-puppet.git diff --git a/modules/munin-node/manifests/init.pp b/modules/munin-node/manifests/init.pp index 9035878f4..0849cc1bd 100644 --- a/modules/munin-node/manifests/init.pp +++ b/modules/munin-node/manifests/init.pp @@ -1,8 +1,13 @@ -define activate_munin_check($ensure=present, script=$name) { +define activate_munin_check($ensure=present, $script = none) { + case $script { + none: { $link = $name } + default: { $link = $script } + } + case $ensure { present: { file { "/etc/munin/plugins/$name": - ensure => "/usr/share/munin/plugins/$script", + ensure => "/usr/share/munin/plugins/$link", notify => Exec["munin-node restart"]; } } @@ -32,6 +37,7 @@ class munin-node { "load":; "memory":; "ntp_offset":; + "ntp_states":; "open_files":; "open_inodes":; "processes":; @@ -40,16 +46,39 @@ class munin-node { "vmstat":; } - file { "/etc/munin/munin-node.conf": - source => [ "puppet:///munin-node/per-host/$fqdn/munin-node.conf", - "puppet:///munin-node/common/munin-node.conf" ], - require => Package["munin-node"], - notify => Exec["munin-node restart"], + case $spamd { + "true": { + activate_munin_check { "spamassassin":; } + } + } + + case $vsftpd { + "true": { + include munin-node::vsftpd + } + } + + file { + "/etc/munin/munin-node.conf": + source => [ "puppet:///munin-node/per-host/$fqdn/munin-node.conf", + "puppet:///munin-node/common/munin-node.conf" ], + require => Package["munin-node"], + notify => Exec["munin-node restart"]; + + "/etc/munin/plugin-conf.d/munin-node": + content => template("munin-node/munin-node.plugin.conf.erb"), + require => Package["munin-node"], + notify => Exec["munin-node restart"]; } exec { "munin-node restart": path => "/etc/init.d:/usr/bin:/usr/sbin:/bin:/sbin", refreshonly => true, } + ferm::rule { "dsa-munin": + domain => "(ip ip6)", + description => "Allow munin from munin master", + rule => "proto tcp mod state state (NEW) dport (munin) @subchain 'munin' { saddr (\$HOST_MUNIN) ACCEPT; }" + } }