/README.rst
https://bitbucket.org/kanemathers/puppet-monit · ReStructuredText · 28 lines · 20 code · 8 blank · 0 comment · 0 complexity · 8c4eaba1755ffc88271c8165e80d7432 MD5 · raw file
- puppet monit module
- ===================
- This is a module for managing monit on puppet agents.
- Usage
- -----
- ``monit::init`` must be initialized with the ``alert`` parameter set. All other
- parameter are optional::
- class { 'monit':
- alert => 'you@domain.com',
- format => '{from: monit@server.com}'
- }
- Services
- ^^^^^^^^
- Services must be configured on the local machine. They can then be sourced
- using puppets fileserver (puppet:///)::
- monit::service { 'my-service':
- ensure => present,
- source => puppet:///modules/monit/files/services/apache,
- }
- .. note:: ./files/services/apache doesn't exist. It's just an example.