Puppet Class: bacula::filedaemon::monit
- Defined in:
- manifests/filedaemon/monit.pp
Overview
Class bacula::filedaemon::monit
Setup monit rules for Bacula Filedaemon
6 7 8 9 10 11 12 13 14 15 16 17 18 |
# File 'manifests/filedaemon/monit.pp', line 6
class bacula::filedaemon::monit
(
Enum['present','absent'] $status,
String $monitor_email
)
{
@monit::fragment { 'bacula-bacula-fd.monit':
ensure => $status,
modulename => 'bacula',
basename => 'bacula-fd',
tag => 'default',
}
}
|