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