From b7b6f9555dd9ff017f8c188d4bf932a21d6e4c0a Mon Sep 17 00:00:00 2001 From: Chris Hammer Date: Tue, 30 Jul 2024 17:25:52 -0400 Subject: [PATCH] Indent fix. --- tasks/cleanup.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tasks/cleanup.yml b/tasks/cleanup.yml index 1c73a97..da3e2c1 100644 --- a/tasks/cleanup.yml +++ b/tasks/cleanup.yml @@ -34,11 +34,11 @@ path: "{{ bigboot_disabled_services_log }}" register: bigboot_disabled_services_log_stat - - name: Remove disabled services log if present - ansible.builtin.file: - path: "{{ bigboot_disabled_services_log }}" - state: absent - when: - - bigboot_disabled_services_log_stat['stat']['exists'] | bool +- name: Remove disabled services log if present + ansible.builtin.file: + path: "{{ bigboot_disabled_services_log }}" + state: absent + when: + - bigboot_disabled_services_log_stat['stat']['exists'] | bool ...