summaryrefslogtreecommitdiff
path: root/manifests/plugins/linux.pp
blob: 354d23c404184e89f073c67317a1c8f3cb31ee4d (plain)
1
2
3
4
5
6
7
8
9
10
# Set up plugins for a linux host
class munin::plugins::linux {
  munin::plugin {
    [ 'df_abs', 'forks', 'df_inode', 'irqstats', 'entropy', 'open_inodes',
      'diskstats', 'proc_pri', 'threads', ]:
      ensure => present;
    'acpi':
      ensure => $::acpi_available;
  }
}