Puppet Class: supervisord::python
- Defined in:
 - manifests/python.pp
 
Overview
This class is called from the main pulsar class for install.
        5 6 7 8 9 10 11 12 13 14 15 16  | 
      
        # File 'manifests/python.pp', line 5
class supervisord::python {
  assert_private('supervisord::python is a private class')
  if $supervisord::manage_python {
    class { '::python':
      dev             => $::supervisord::manage_python_dev,
      manage_gunicorn => false,
      use_epel        => $::supervisord::manage_python_use_epel,
      virtualenv      => $::supervisord::manage_python_virtualenv,
    }
  }
}
       |