mirror of
https://github.com/ansible/awx.git
synced 2026-02-21 05:00:07 -03:30
* Created new rsyslog launch file. * Rsyslog conf work. * Refining how we're calling rsyslog conf. * Removed rsyslog so it no longer launches in the web container. * Added the new launch_awx_rsyslog.sh to the /usr/bin
20 lines
473 B
YAML
20 lines
473 B
YAML
---
|
|
- name: Create _build directory
|
|
file:
|
|
path: "{{ dockerfile_dest }}/{{ template_dest }}"
|
|
state: directory
|
|
|
|
- name: Render supervisor configs
|
|
template:
|
|
src: "{{ item }}.j2"
|
|
dest: "{{ dockerfile_dest }}/{{ template_dest }}/{{ item }}"
|
|
with_items:
|
|
- "supervisor.conf"
|
|
- "supervisor_task.conf"
|
|
- "supervisor_rsyslog.conf"
|
|
|
|
- name: Render Dockerfile
|
|
template:
|
|
src: Dockerfile.j2
|
|
dest: "{{ dockerfile_dest }}/{{ dockerfile_name }}"
|