summaryrefslogtreecommitdiff
path: root/manifests/master/munin.pp
blob: ca6fddc88b22fd2cc31524cf169cbcf10a54481c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# deploy puppet munin plugin
class puppet::master::munin {
  munin::plugin::deploy{'puppet_':
    ensure => absent,
    source => 'puppet/munin/puppet_';
  }
  munin::plugin{
    ['puppet_clients','puppet_mem']:
      ensure  => 'puppet_',
      require => Munin::Plugin::Deploy['puppet_'],
      config  => 'user root';
  }
}