summaryrefslogtreecommitdiffstats
path: root/modules/munin/manifests/plugin.pp
blob: 09c2677141102d6a496eefdb0d6b23fd5824fb4a (plain) (blame)
1
2
3
4
5
6
7
define munin::plugin($source=$name) {
  file { "/etc/munin/plugins/$name":
    ensure => link,
    target => "/usr/lib/munin/plugins/$source",
    require => Package['munin-node'];
  }
}