X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Fmunin-node%2Fmanifests%2Finit.pp;h=6e2eb5e1271b0198df0eb7737abfa72d11c52eea;hb=a74d2b5351e782da2dea66815a2973d1cb1ed83b;hp=f09f8fc6a9ff14f93295708d01b0d821d4fb640f;hpb=48488d09556d7c30a3d1eb0e7298cf430e45405b;p=mirror%2Fdsa-puppet.git diff --git a/modules/munin-node/manifests/init.pp b/modules/munin-node/manifests/init.pp index f09f8fc6a..6e2eb5e12 100644 --- a/modules/munin-node/manifests/init.pp +++ b/modules/munin-node/manifests/init.pp @@ -1,19 +1,62 @@ -define activate_munin_check($script) { - file { "/etc/munin/plugins/$script": - ensure => "/usr/share/munin/plugins/$script" - notify => Exec["munin-node restart"]; +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/$base", + notify => Exec["munin-node restart"]; + } } + default: { + file { "/etc/munin/plugins/$name": + ensure => $ensure, + notify => Exec["munin-node restart"]; + } + } + } } class munin-node { package { munin-node: ensure => installed } - 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"], + activate_munin_check { + "cpu":; + "df":; + "df_abs":; + "df_inode":; + "entropy":; + "forks":; + "interrupts":; + "iostat":; + "irqstats":; + "load":; + "memory":; + "ntp_offset":; + "open_files":; + "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"]; + + "/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":