Beautify output

This commit is contained in:
Tobias Manske 2022-09-07 17:12:08 +02:00
parent dad7d71f09
commit be9e148100
Signed by: tobias
GPG Key ID: E83C743C1FC2F79A

View File

@ -25,6 +25,8 @@
dest: '{{ render_path }}/{{ item.path }}'
changed_when: false
with_filetree: './compose'
loop_control:
label: '{{ item.path }}'
when: item.state == 'directory'
- name: Template Compose structure
ansible.builtin.template:
@ -33,6 +35,8 @@
force: true
changed_when: false
with_filetree: './compose'
loop_control:
label: '{{ item.path }}'
when: item.state == 'file' and item.path not in render_blacklist
delegate_to: localhost