summaryrefslogtreecommitdiff
path: root/manifests/munin.pp
blob: 46b75bd721767b909eeefc169c6dacafc58cdc56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
class apcupsd::munin(
  $ensure = present
) {
  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 => absent,
  }

  # From https://raw.githubusercontent.com/munin-monitoring/contrib/master/plugins/ups/apcupsd_pct
  #munin::plugin::deploy { 'apcupsd_pct':
  #  source => "apcupsd/munin/apcupsd_pct",
  #  ensure => $ensure,
  #}
}