Puppet Class: collectd::plugin::thermal
- Defined in:
- manifests/plugin/thermal.pp
Overview
2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# File 'manifests/plugin/thermal.pp', line 2
class collectd::plugin::thermal (
Array $devices = [],
$ensure = 'present',
Boolean $ignoreselected = false,
$interval = undef,
) {
include collectd
collectd::plugin { 'thermal':
ensure => $ensure,
content => template('collectd/plugin/thermal.conf.erb'),
interval => $interval,
}
}
|