Compare commits

..

2 commits

5 changed files with 13 additions and 7 deletions

View file

@ -1,3 +1,9 @@
## 0.1.0a3 (2025-05-02)
### Fix
- do not force use_data usage
## 0.1.0a2 (2025-04-09)
### Fix

View file

@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2025-02-10 09:16+0100\n"
"POT-Creation-Date: 2025-04-29 23:02+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -15,7 +15,7 @@ msgstr ""
"Generated-By: pygettext.py 1.5\n"
#: src/rougail/user_data_ansible/__init__.py:47
#: src/rougail/user_data_ansible/__init__.py:48
msgid "ansible is not set in step.user_data"
msgstr ""

View file

@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
[project]
name = "rougail.user_data_ansible"
version = "0.1.0a2"
version = "0.1.0a3"
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
readme = "README.md"
description = "Rougail user_data ansible"

View file

@ -1 +1 @@
__version__ = "0.1.0a2"
__version__ = "0.1.0a3"

View file

@ -31,7 +31,7 @@ ansible:
disabled:
type: jinja
jinja: |
{{% if 'ansible' not in step.user_data %}}
{{% if step.user_data is propertyerror or 'ansible' not in step.user_data %}}
disabled
{{% endif %}}
@ -47,7 +47,7 @@ ansible:
disabled:
type: jinja
jinja: |
{{% if 'ansible' not in step.user_data %}}
{{% if step.user_data is propertyerror or 'ansible' not in step.user_data %}}
disabled
{{% endif %}}
@ -57,7 +57,7 @@ ansible:
disabled:
type: jinja
jinja: |
{{% if 'ansible' not in step.user_data %}}
{{% if step.user_data is propertyerror or 'ansible' not in step.user_data %}}
disabled
{{% endif %}}