Puppet Class: munin::plugins::physical
- Defined in:
- manifests/plugins/physical.pp
Overview
Set up the plugins for a physical machine
2 3 4 5 6 7 |
# File 'manifests/plugins/physical.pp', line 2
class munin::plugins::physical {
case $::kernel {
linux: { munin::plugin { 'iostat': } }
default: {}
}
}
|