mirror of
https://github.com/ansible/awx.git
synced 2026-04-04 17:55:06 -02:30
Stop using make to start processes
part 1... we dont need to run awx processes through make because awx-manage uses awx-python which is already activating the correct venv
This commit is contained in:
@@ -4,7 +4,7 @@ minfds = 4096
|
|||||||
nodaemon=true
|
nodaemon=true
|
||||||
|
|
||||||
[program:awx-dispatcher]
|
[program:awx-dispatcher]
|
||||||
command = make dispatcher
|
command = awx-manage run_dispatcher
|
||||||
autorestart = true
|
autorestart = true
|
||||||
stopasgroup=true
|
stopasgroup=true
|
||||||
killasgroup=true
|
killasgroup=true
|
||||||
@@ -12,7 +12,7 @@ stdout_events_enabled = true
|
|||||||
stderr_events_enabled = true
|
stderr_events_enabled = true
|
||||||
|
|
||||||
[program:awx-receiver]
|
[program:awx-receiver]
|
||||||
command = make receiver
|
command = awx-manage run_callback_receiver
|
||||||
autorestart = true
|
autorestart = true
|
||||||
stopasgroup=true
|
stopasgroup=true
|
||||||
killasgroup=true
|
killasgroup=true
|
||||||
@@ -20,7 +20,7 @@ stdout_events_enabled = true
|
|||||||
stderr_events_enabled = true
|
stderr_events_enabled = true
|
||||||
|
|
||||||
[program:awx-wsrelay]
|
[program:awx-wsrelay]
|
||||||
command = make run-wsrelay
|
command = awx-manage run_wsrelay
|
||||||
autorestart = true
|
autorestart = true
|
||||||
autorestart = true
|
autorestart = true
|
||||||
stopasgroup=true
|
stopasgroup=true
|
||||||
@@ -29,7 +29,7 @@ stdout_events_enabled = true
|
|||||||
stderr_events_enabled = true
|
stderr_events_enabled = true
|
||||||
|
|
||||||
[program:awx-heartbeet]
|
[program:awx-heartbeet]
|
||||||
command = make run-heartbeet
|
command = awx-manage run_heartbeet
|
||||||
autorestart = true
|
autorestart = true
|
||||||
autorestart = true
|
autorestart = true
|
||||||
stopasgroup=true
|
stopasgroup=true
|
||||||
@@ -38,7 +38,7 @@ stdout_events_enabled = true
|
|||||||
stderr_events_enabled = true
|
stderr_events_enabled = true
|
||||||
|
|
||||||
[program:awx-rsyslog-configurer]
|
[program:awx-rsyslog-configurer]
|
||||||
command = make run-rsyslog-configurer
|
command = awx-manage run_rsyslog_configurer
|
||||||
autorestart = true
|
autorestart = true
|
||||||
stopasgroup=true
|
stopasgroup=true
|
||||||
killasgroup=true
|
killasgroup=true
|
||||||
@@ -48,7 +48,7 @@ stderr_logfile=/dev/stderr
|
|||||||
stderr_logfile_maxbytes=0
|
stderr_logfile_maxbytes=0
|
||||||
|
|
||||||
[program:awx-cache-clear]
|
[program:awx-cache-clear]
|
||||||
command = make run-cache-clear
|
command = awx-manage run_cache_clear
|
||||||
autorestart = true
|
autorestart = true
|
||||||
stopasgroup=true
|
stopasgroup=true
|
||||||
killasgroup=true
|
killasgroup=true
|
||||||
|
|||||||
Reference in New Issue
Block a user