Puppet Class: collectd::plugin::ntpd
- Defined in:
- manifests/plugin/ntpd.pp
Overview
2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# File 'manifests/plugin/ntpd.pp', line 2
class collectd::plugin::ntpd (
$ensure = present,
$host = 'localhost',
$port = 123,
$reverselookups = false,
$includeunitid = false,
$interval = undef,
) {
collectd::plugin {'ntpd':
ensure => $ensure,
content => template('collectd/plugin/ntpd.conf.erb'),
interval => $interval,
}
}
|