Compare commits
2 commits
44f79bffe4
...
de3c6b8db6
| Author | SHA1 | Date | |
|---|---|---|---|
| de3c6b8db6 | |||
| 8e4eb0a18f |
4 changed files with 9 additions and 3 deletions
|
|
@ -1,3 +1,9 @@
|
||||||
|
## 0.2.0a7 (2025-05-02)
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
- do not force use_data usage
|
||||||
|
|
||||||
## 0.2.0a6 (2025-04-30)
|
## 0.2.0a6 (2025-04-30)
|
||||||
|
|
||||||
### Fix
|
### Fix
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "rougail.output_ansible"
|
name = "rougail.output_ansible"
|
||||||
version = "0.2.0a6"
|
version = "0.2.0a7"
|
||||||
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
description = "Rougail output ansible"
|
description = "Rougail output ansible"
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
__version__ = "0.2.0a6"
|
__version__ = "0.2.0a7"
|
||||||
|
|
|
||||||
|
|
@ -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