Compare commits

..

No commits in common. "96d2b6923f033a5e118ee3f874c3241612877a32" and "eb0f5901abacc04d518720c605a38b9d3e2598c8" have entirely different histories.

5 changed files with 5 additions and 16 deletions

View file

@ -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) ## 0.1.0a5 (2025-11-21)
### Fix ### Fix

View file

@ -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.0a6" version = "0.1.0a5"
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"

View file

@ -35,7 +35,6 @@ class RougailUserDataAnsible(RougailUserDataYaml):
config, config,
*, *,
rougailconfig=None, rougailconfig=None,
**kwargs,
) -> None: ) -> None:
if rougailconfig is None: if rougailconfig is None:
from rougail import RougailConfig from rougail import RougailConfig

View file

@ -1 +1 @@
__version__ = "0.1.0a6" __version__ = "0.1.0a5"

View file

@ -45,7 +45,7 @@ ansible:
- file - file
disabled: disabled:
jinja: | 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 return_type: boolean
description: {_('if ansible is not set in "step.user_data"')} description: {_('if ansible is not set in "step.user_data"')}
@ -54,7 +54,7 @@ ansible:
type: secret type: secret
disabled: disabled:
jinja: | 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 return_type: boolean
description: {_('if ansible is not set in "step.user_data"')} description: {_('if ansible is not set in "step.user_data"')}
@ -68,7 +68,7 @@ ansible:
- none - none
disabled: disabled:
jinja: | 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 return_type: boolean
description: {_('if ansible is not set in "step.user_data"')} description: {_('if ansible is not set in "step.user_data"')}
""" """