summaryrefslogtreecommitdiff
path: root/manifests/munin.pp
blob: ad6d6d4480b9c7ccdd965b02aab41c103a6f05af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class apcupsd::munin(
  $ensure = present
) {
  # TODO: disable this in the future as apcupsd_ww is more flexible
  munin::plugin::deploy { 'apc_nis':
    source => "apcupsd/munin/apc_nis",
    ensure => $ensure,
  }

  # From http://munin-monitoring.org/browser/munin-contrib/plugins/ups/apcupsd_ww
  munin::plugin::deploy { 'apcupsd_ww':
    source => "apcupsd/munin/apcupsd_ww",
    ensure => $ensure,
  }
}