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