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