mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-28 07:31:23 -07:00
Initial commit
This commit is contained in:
commit
aebc1b03fd
4861 changed files with 812621 additions and 0 deletions
|
@ -0,0 +1,42 @@
|
|||
[supervisord]
|
||||
pidfile={{ remote_dir }}/supervisord.pid
|
||||
logfile={{ remote_dir }}/supervisord.log
|
||||
|
||||
[program:py1]
|
||||
command={{ ansible_python.executable }} -i -u -
|
||||
user={{ ansible_user_id }}
|
||||
autostart=false
|
||||
autorestart=false
|
||||
stdout_logfile={{ remote_dir }}/py1.log
|
||||
redirect_stderr=yes
|
||||
|
||||
[program:py2]
|
||||
command={{ ansible_python.executable }} -i -u -
|
||||
user={{ ansible_user_id }}
|
||||
autostart=false
|
||||
autorestart=false
|
||||
stdout_logfile={{ remote_dir }}/py2.log
|
||||
redirect_stderr=yes
|
||||
|
||||
[group:pys]
|
||||
programs=py1,py2
|
||||
|
||||
[unix_http_server]
|
||||
file={{ remote_dir }}/supervisord.sock
|
||||
{% if credentials.username is defined and credentials.username|default(false, boolean=true) %}
|
||||
username = {{ credentials.username }}
|
||||
password = {{ credentials.password }}
|
||||
{% endif %}
|
||||
|
||||
[inet_http_server]
|
||||
port=127.0.0.1:9001
|
||||
{% if credentials.username is defined and credentials.username|default(false, boolean=true) %}
|
||||
username = {{ credentials.username }}
|
||||
password = {{ credentials.password }}
|
||||
{% endif %}
|
||||
|
||||
[supervisorctl]
|
||||
serverurl=unix://{{ remote_dir }}/supervisord.sock
|
||||
|
||||
[rpcinterface:supervisor]
|
||||
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
|
Loading…
Add table
Add a link
Reference in a new issue