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