Skip to content

This module installs the 'supervisor' package available on Debian, and enables you to set up programs to run under supervisor. It is very basic and supports only a tiny subset of supervisor's functionality for the moment.

Notifications You must be signed in to change notification settings

jamesmcdonald/puppet-supervisor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

puppet-supervisor

This module installs the 'supervisor' package available on Debian, and enables you to set up programs to run under supervisor. It is very basic and supports only a tiny subset of supervisor's functionality for the moment.

Example

include supervisor

supervisor::program {'testservice':
    ensure  => present,
    command => '/opt/testservice/testservice.py',
    require => Vcsrepo['testservice'],
}   

vcsrepo {'testservice':
    path     => '/opt/testservice',
    provider => 'git',
    source   => 'http://github.com/jamesmcdonald/testservice.git',
    revision => 'master',
    ensure   => latest,
    notify   => Supervisor::Service['testservice'],
}   

License

Contact

Support

About

This module installs the 'supervisor' package available on Debian, and enables you to set up programs to run under supervisor. It is very basic and supports only a tiny subset of supervisor's functionality for the moment.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages