From 8e4eb0a18f7970654958755998874c2db7fbf073 Mon Sep 17 00:00:00 2001 From: Emmanuel Garette Date: Fri, 2 May 2025 08:21:02 +0200 Subject: [PATCH] fix: do not force use_data usage --- src/rougail/output_ansible/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rougail/output_ansible/config.py b/src/rougail/output_ansible/config.py index 3607b50..4b0eb89 100644 --- a/src/rougail/output_ansible/config.py +++ b/src/rougail/output_ansible/config.py @@ -52,7 +52,7 @@ ansible: disabled: type: jinja jinja: | - {{% if step.output is propertyerror or (step.output != 'ansible' and 'ansible' not in step.user_data) %}} + {{% if step.output is propertyerror or (step.output != 'ansible' and (step.user_data is propertyerror or 'ansible' not in step.user_data)) %}} disabled {{% endif %}}