1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-27 09:25:10 +03:00

Merge pull request #3863 from ryanpetrello/makefile-supervisor

use make targets for dev supervisor commands

Reviewed-by: https://github.com/softwarefactory-project-zuul[bot]
This commit is contained in:
softwarefactory-project-zuul[bot] 2019-05-09 18:07:39 +00:00 committed by GitHub
commit 99dc84c275
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,7 +4,7 @@ minfds = 4096
nodaemon=true
[program:awx-dispatcher]
command = awx-manage run_dispatcher
command = make dispatcher
autostart = true
autorestart = true
redirect_stderr=true
@ -12,7 +12,7 @@ stdout_logfile=/dev/fd/1
stdout_logfile_maxbytes=0
[program:awx-receiver]
command = python manage.py run_callback_receiver
command = make receiver
autostart = true
autorestart = true
redirect_stderr=true
@ -20,7 +20,7 @@ stdout_logfile=/dev/fd/1
stdout_logfile_maxbytes=0
[program:awx-runworker]
command = python manage.py runworker
command = make runworker
autostart = true
autorestart = true
redirect_stderr=true
@ -40,7 +40,7 @@ stdout_logfile=/dev/fd/1
stdout_logfile_maxbytes=0
[program:awx-daphne]
command = daphne -b 0.0.0.0 -p 8051 awx.asgi:channel_layer
command = make daphne
autostart = true
autorestart = true
redirect_stderr=true
@ -48,7 +48,7 @@ stdout_logfile=/dev/fd/1
stdout_logfile_maxbytes=0
[program:awx-nginx]
command = nginx -g "daemon off;"
command = make nginx
autostart = true
autorestart = true
redirect_stderr=true