Puppet Class: collectd::plugin::contextswitch
- Defined in:
- manifests/plugin/contextswitch.pp
Overview
2 3 4 5 6 7 8 9 10 11 12 |
# File 'manifests/plugin/contextswitch.pp', line 2
class collectd::plugin::contextswitch (
Enum['present', 'absent'] $ensure = 'present',
Optional[Integer[1]] $interval = undef,
) {
include collectd
collectd::plugin { 'contextswitch':
ensure => $ensure,
interval => $interval,
}
}
|