Puppet Class: ntp::monit
- Inherits:
- ntp::params
- Defined in:
- manifests/monit.pp
Overview
Class: ntp::monit
Setups monit rules for ntp
6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# File 'manifests/monit.pp', line 6
class ntp::monit
(
$ensure,
$monitor_email
) inherits ntp::params
{
@monit::fragment { 'ntp-ntp.monit':
ensure => $ensure,
basename => 'ntp',
modulename => 'ntp',
tag => 'default',
}
}
|