X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Fmunin-node%2Fmanifests%2Finit.pp;h=9035878f42fb02e621f992471555fabb5777c5d9;hb=5cd06b56b52b1945fe15251776e7030619609983;hp=54f29e983d85982f19e3bbc8306be7bca4ecd55a;hpb=4b8bd3b11bf706f3cfdcf8e07e4f5abda3b93750;p=mirror%2Fdsa-puppet.git diff --git a/modules/munin-node/manifests/init.pp b/modules/munin-node/manifests/init.pp index 54f29e983..9035878f4 100644 --- a/modules/munin-node/manifests/init.pp +++ b/modules/munin-node/manifests/init.pp @@ -1,8 +1,18 @@ -define activate_munin_check() { - file { "/etc/munin/plugins/$name": - ensure => "/usr/share/munin/plugins/$name", - notify => Exec["munin-node restart"]; +define activate_munin_check($ensure=present, script=$name) { + case $ensure { + present: { + file { "/etc/munin/plugins/$name": + ensure => "/usr/share/munin/plugins/$script", + notify => Exec["munin-node restart"]; + } } + default: { + file { "/etc/munin/plugins/$name": + ensure => $ensure, + notify => Exec["munin-node restart"]; + } + } + } } class munin-node { @@ -12,6 +22,7 @@ class munin-node { activate_munin_check { "cpu":; "df":; + "df_abs":; "df_inode":; "entropy":; "forks":; @@ -25,6 +36,7 @@ class munin-node { "open_inodes":; "processes":; "swap":; + "uptime":; "vmstat":; }