Compare commits
No commits in common. "96d2b6923f033a5e118ee3f874c3241612877a32" and "eb0f5901abacc04d518720c605a38b9d3e2598c8" have entirely different histories.
96d2b6923f
...
eb0f5901ab
5 changed files with 5 additions and 16 deletions
10
CHANGELOG.md
10
CHANGELOG.md
|
|
@ -1,13 +1,3 @@
|
|||
## 0.1.0a6 (2026-05-04)
|
||||
|
||||
### Feat
|
||||
|
||||
- multi layers
|
||||
|
||||
### Fix
|
||||
|
||||
- user-data-ansible can set a personalise source
|
||||
|
||||
## 0.1.0a5 (2025-11-21)
|
||||
|
||||
### Fix
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
|
|||
|
||||
[project]
|
||||
name = "rougail.user_data_ansible"
|
||||
version = "0.1.0a6"
|
||||
version = "0.1.0a5"
|
||||
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
||||
readme = "README.md"
|
||||
description = "Rougail user_data ansible"
|
||||
|
|
|
|||
|
|
@ -35,7 +35,6 @@ class RougailUserDataAnsible(RougailUserDataYaml):
|
|||
config,
|
||||
*,
|
||||
rougailconfig=None,
|
||||
**kwargs,
|
||||
) -> None:
|
||||
if rougailconfig is None:
|
||||
from rougail import RougailConfig
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
__version__ = "0.1.0a6"
|
||||
__version__ = "0.1.0a5"
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@ ansible:
|
|||
- file
|
||||
disabled:
|
||||
jinja: |
|
||||
{{{{ __.step.user_data is propertyerror or 'ansible' not in __.step.user_data }}}}
|
||||
{{{{ _.step.user_data is propertyerror or 'ansible' not in _.step.user_data }}}}
|
||||
return_type: boolean
|
||||
description: {_('if ansible is not set in "step.user_data"')}
|
||||
|
||||
|
|
@ -54,7 +54,7 @@ ansible:
|
|||
type: secret
|
||||
disabled:
|
||||
jinja: |
|
||||
{{{{ __.step.user_data is propertyerror or 'ansible' not in __.step.user_data }}}}
|
||||
{{{{ _.step.user_data is propertyerror or 'ansible' not in _.step.user_data }}}}
|
||||
return_type: boolean
|
||||
description: {_('if ansible is not set in "step.user_data"')}
|
||||
|
||||
|
|
@ -68,7 +68,7 @@ ansible:
|
|||
- none
|
||||
disabled:
|
||||
jinja: |
|
||||
{{{{ __.step.user_data is propertyerror or 'ansible' not in __.step.user_data }}}}
|
||||
{{{{ _.step.user_data is propertyerror or 'ansible' not in _.step.user_data }}}}
|
||||
return_type: boolean
|
||||
description: {_('if ansible is not set in "step.user_data"')}
|
||||
"""
|
||||
|
|
|
|||
Loading…
Reference in a new issue