Version information
released Mar 27th 2016
Start using this module
Add this module to your Puppetfile:
mod 'jbussdieker-monit', '0.0.5'
Learn more about managing modules with a PuppetfileDocumentation
jbussdieker/monit — version 0.0.5 Mar 27th 2016
Monit Module
This module manages installing, configuring and running processes using monit.
http://forge.puppetlabs.com/jbussdieker/monit
Parameters
- ensure: running, stopped. default: running
- start_command: Command line to start service.
- stop_command: Command line to stop service.
- pidfile: Location to find the pid file.
Usage
monit::process {'myapp':
ensure => running,
start_command => '/etc/init.d/myapp start',
stop_command => '/etc/init.d/myapp stop',
pidfile => '/var/run/myapp/myapp.pid',
}