X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Fmunin-node%2Fmanifests%2Finit.pp;h=6e2eb5e1271b0198df0eb7737abfa72d11c52eea;hb=a74d2b5351e782da2dea66815a2973d1cb1ed83b;hp=be39fee4d1b7b5df76ec585bddf408d503185146;hpb=293ece5a857f4ef3cd3de0105228235ffa43a45e;p=mirror%2Fdsa-puppet.git diff --git a/modules/munin-node/manifests/init.pp b/modules/munin-node/manifests/init.pp index be39fee4d..6e2eb5e12 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) { +define activate_munin_check($ensure=present, script=$name) { + case $script { + "": { $base = $name } + default: { $base = $script } + } + case $ensure { present: { file { "/etc/munin/plugins/$name": - ensure => "/usr/share/munin/plugins/$name", + ensure => "/usr/share/munin/plugins/$base", notify => Exec["munin-node restart"]; } } @@ -22,6 +27,7 @@ class munin-node { activate_munin_check { "cpu":; "df":; + "df_abs":; "df_inode":; "entropy":; "forks":; @@ -35,14 +41,22 @@ class munin-node { "open_inodes":; "processes":; "swap":; + "uptime":; "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"], + 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": + source => [ "puppet:///munin-node/per-host/$fqdn/munin-node.plugin.conf", + "puppet:///munin-node/common/munin-node.plugin.conf" ], + require => Package["munin-node"], + notify => Exec["munin-node restart"]; } exec { "munin-node restart":