631f77c5fa
Servicep parameter is unused and should be deleted Related blueprint pacemaker-improvements Change-Id: I31fc5f168b68f102e210810e80bcbd9a2419c726 Signed-off-by: Bogdan Dobrelya <bdobrelia@mirantis.com> |
||
---|---|---|
.. | ||
lib/puppet/provider/service | ||
manifests | ||
spec | ||
templates | ||
.gitignore | ||
.travis.yml | ||
Gemfile | ||
Modulefile | ||
Rakefile | ||
README.md |
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',
}