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

  munin::plugin { 'apc_nis':
    ensure => $ensure,
  }
}