Rename supervisor.conf.j2 to be descriptive

supervisor.conf.j2 file is the template for supervisor.conf file for the web container rename to supervisor_web.conf make it more clear that it is use for the web container
This commit is contained in:
Hao Liu 2023-03-29 19:14:12 -04:00
parent 13b9a6c5e3
commit 0cc02d311f
3 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@
src: "{{ item }}.j2"
dest: "{{ dockerfile_dest }}/{{ template_dest }}/{{ item }}"
with_items:
- "supervisor.conf"
- "supervisor_web.conf"
- "supervisor_task.conf"
- "supervisor_rsyslog.conf"

View File

@ -213,7 +213,7 @@ ADD tools/docker-compose/podman-containers.conf /var/lib/awx/.config/containers/
ADD tools/ansible/roles/dockerfile/files/launch_awx.sh /usr/bin/launch_awx.sh
ADD tools/ansible/roles/dockerfile/files/launch_awx_task.sh /usr/bin/launch_awx_task.sh
ADD tools/ansible/roles/dockerfile/files/launch_awx_rsyslog.sh /usr/bin/launch_awx_rsyslog.sh
ADD {{ template_dest }}/supervisor.conf /etc/supervisord.conf
ADD {{ template_dest }}/supervisor_web.conf /etc/supervisord_web.conf
ADD {{ template_dest }}/supervisor_task.conf /etc/supervisord_task.conf
ADD {{ template_dest }}/supervisor_rsyslog.conf /etc/supervisor_rsyslog.conf
{% endif %}