Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jbussdieker/puppet-monit
This module manages installing, configuring and running processes using monit.
https://github.com/jbussdieker/puppet-monit
monit puppet
Last synced: about 2 months ago
JSON representation
This module manages installing, configuring and running processes using monit.
- Host: GitHub
- URL: https://github.com/jbussdieker/puppet-monit
- Owner: jbussdieker
- Created: 2013-07-13T19:27:06.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2018-03-27T20:59:32.000Z (almost 7 years ago)
- Last Synced: 2024-04-14T05:54:59.024Z (10 months ago)
- Topics: monit, puppet
- Language: HTML
- Homepage:
- Size: 20.5 KB
- Stars: 4
- Watchers: 2
- Forks: 13
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Monit Module
[![Build Status](https://travis-ci.org/jbussdieker/puppet-monit.png?branch=master)](https://travis-ci.org/jbussdieker/puppet-monit)
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',
}