stylight / puppet-module-supervisor

Puppet module for configuring the supervisor daemon tool.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

Install into module_path>/supervisor

Example usage:

include supervisor

supervisor::service {
  'scribe':
    ensure      => present,
    enable      => true,
    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'] ];
}

About

Puppet module for configuring the supervisor daemon tool.

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Puppet 72.1%Language:HTML 27.7%Language:Pascal 0.2%