fix: do not force use_data usage
This commit is contained in:
parent
44f79bffe4
commit
8e4eb0a18f
1 changed files with 1 additions and 1 deletions
|
|
@ -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 %}}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue