summaryrefslogtreecommitdiff
path: root/manifests/munin.pp
blob: df1e6a306a1caaff8d5cc1db6b97c77f8f3e2a9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class apcupsd::munin(
  $ensure => present,
) {
  munin::plugin::deploy { 'apc_nis':
    source => "apcupsd/munin/apc_nis" ,
    ensure => $ensure,
  }

  # We might want to replace the debian plugin with a newer one which better
  # maximum limits: http://munin-monitoring.org/browser/munin/plugins/node.d/apc_nis.in
  munin::plugin { 'apc_nis':
    ensure => $ensure,
  }
}