Compare commits
2 commits
66206f05cf
...
bacec45946
| Author | SHA1 | Date | |
|---|---|---|---|
| bacec45946 | |||
| 3149ba1103 |
5 changed files with 15 additions and 6 deletions
|
|
@ -1,3 +1,9 @@
|
||||||
|
## 0.1.0a4 (2025-11-06)
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
- disable config if ansible is not selected
|
||||||
|
|
||||||
## 0.1.0a3 (2025-05-02)
|
## 0.1.0a3 (2025-05-02)
|
||||||
|
|
||||||
### Fix
|
### Fix
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2025-04-29 23:02+0200\n"
|
"POT-Creation-Date: 2025-10-10 08:05+0200\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "rougail.user_data_ansible"
|
name = "rougail.user_data_ansible"
|
||||||
version = "0.1.0a3"
|
version = "0.1.0a4"
|
||||||
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
description = "Rougail user_data ansible"
|
description = "Rougail user_data ansible"
|
||||||
|
|
@ -13,9 +13,6 @@ license = {file = "LICENSE"}
|
||||||
classifiers = [
|
classifiers = [
|
||||||
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
|
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
|
||||||
"Programming Language :: Python",
|
"Programming Language :: Python",
|
||||||
"Programming Language :: Python :: 3.8",
|
|
||||||
"Programming Language :: Python :: 3.9",
|
|
||||||
"Programming Language :: Python :: 3.10",
|
|
||||||
"Programming Language :: Python :: 3.11",
|
"Programming Language :: Python :: 3.11",
|
||||||
"Programming Language :: Python :: 3.12",
|
"Programming Language :: Python :: 3.12",
|
||||||
"Programming Language :: Python :: 3.13",
|
"Programming Language :: Python :: 3.13",
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
__version__ = "0.1.0a3"
|
__version__ = "0.1.0a4"
|
||||||
|
|
|
||||||
|
|
@ -69,6 +69,12 @@ ansible:
|
||||||
- first
|
- first
|
||||||
- last
|
- last
|
||||||
- none
|
- none
|
||||||
|
disabled:
|
||||||
|
type: jinja
|
||||||
|
jinja: |
|
||||||
|
{{% if step.user_data is propertyerror or 'ansible' not in step.user_data %}}
|
||||||
|
disabled
|
||||||
|
{{% endif %}}
|
||||||
"""
|
"""
|
||||||
return {
|
return {
|
||||||
"name": "ansible",
|
"name": "ansible",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue