summaryrefslogtreecommitdiff
path: root/manifests/munin.pp
blob: 3230fa2b178c0633b024e1f3e3e04b145c56b1a9 (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,
  }
}