Puppet Class: monit::install
- Defined in:
- manifests/install.pp
Overview
monit::config This class handles monit package.
6 7 8 9 10 11 12 13 14 |
# File 'manifests/install.pp', line 6
class monit::install {
if $caller_module_name != $module_name {
warning("${name} is not part of the public API of the ${module_name} module and should not be directly included in the manifest.")
}
package { $monit::package:
ensure => present,
}
}
|