Compare commits

..

2 commits

Author SHA1 Message Date
96d2b6923f bump: version 0.1.0a5 → 0.1.0a6 2026-05-04 13:36:14 +02:00
bc29f668fb feat: multi layers 2026-05-04 11:19:45 +02:00
5 changed files with 16 additions and 5 deletions

View file

@ -1,3 +1,13 @@
## 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.0a5" version = "0.1.0a6"
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,6 +35,7 @@ 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.0a5" __version__ = "0.1.0a6"

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"')}
""" """