From be9e1481006aa2b21db2ef8f1007ddf59fda8d70 Mon Sep 17 00:00:00 2001 From: Tobias Manske Date: Wed, 7 Sep 2022 17:12:08 +0200 Subject: [PATCH] Beautify output --- coreos-config/playbook.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/coreos-config/playbook.yaml b/coreos-config/playbook.yaml index 9754e6b..55a9ef6 100644 --- a/coreos-config/playbook.yaml +++ b/coreos-config/playbook.yaml @@ -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