From 9c4d18b81425a5a26d1f64077967ad8f92a8a6ea Mon Sep 17 00:00:00 2001 From: Gael Chamoulaud Date: Wed, 22 May 2019 16:58:02 +0200 Subject: [PATCH] Fix invalid 'ignore_missing_file' attribute in a task This patch fixes the indentation of this ini module attribute. Change-Id: I59310ed92994e8f4913f493ae9711b209b45dd5b Signed-off-by: Gael Chamoulaud --- roles/undercloud-debug/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/undercloud-debug/tasks/main.yml b/roles/undercloud-debug/tasks/main.yml index b59c47f43..43add3454 100644 --- a/roles/undercloud-debug/tasks/main.yml +++ b/roles/undercloud-debug/tasks/main.yml @@ -5,7 +5,7 @@ path: "{{ item }}" section: DEFAULT key: debug - ignore_missing_file: True + ignore_missing_file: True register: config_result with_items: "{{ services_conf_files }}" failed_when: "debug_check|bool == config_result.value|bool"