fix: do not force use_data usage

This commit is contained in:
egarette@silique.fr 2025-05-02 08:21:02 +02:00
parent 44f79bffe4
commit 8e4eb0a18f

View file

@ -52,7 +52,7 @@ ansible:
disabled: disabled:
type: jinja type: jinja
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 disabled
{{% endif %}} {{% endif %}}