# puppet-supervisor **Repository Path**: mirrors_haf/puppet-supervisor ## Basic Information - **Project Name**: puppet-supervisor - **Description**: Puppet module for configuring the supervisor daemon tool. - **Primary Language**: Unknown - **License**: BSD-3-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-05-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # puppet-supervisor Puppet module for configuring the 'supervisor' daemon control utility. Currently tested on CentOS. Requires supervisor to be packaged properly for CentOS, named 'python-supervisor' at my [fpm recipes](https://github.com/haf/fpm-recipes). ### Example usage ```puppet 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'] ]; } ```