An open API service indexing awesome lists of open source software.

https://github.com/bigmlcom/puppet-module-supervisor

Puppet module for configuring the supervisor daemon tool.
https://github.com/bigmlcom/puppet-module-supervisor

Last synced: 9 months ago
JSON representation

Puppet module for configuring the supervisor daemon tool.

Awesome Lists containing this project

README

          

Puppet module for configuring the 'supervisor' daemon control
utility. Currently only tested on Debian and Ubuntu 10.04.

Install into your /supervisor

Example usage::

supervisor::service {
"scribe":
enable => true,
ensure => running,
command => "/usr/bin/scribed -c /etc/scribe/scribe.conf",
environment => "HADOOP_HOME=/usr/lib/hadoop,LD_LIBRARY_PATH=/usr/lib/jvm/java-6-sun/jre/lib/amd64/server",
user => "scribe",
group => "scribe",
require => [ Package["scribe"], User["scribe"] ];
}