Debos Action
The debos action is a special action that allows to generate a Debos version of
the Simple-CDD-YAML recipe. A Debos is only generated, when the user adds the
option --debos
when issuing the simple-cdd-yaml
command.
Info
Only overlay
and run
actions are included in the debos recipe.
Usage
Click on the to learn more about the action's options.
Debos Action
{% set architecture=architecture or "amd64" -%}
actions:
- action: debos
description: Debos recipe export settings and actions #(1)!
architecture: {{ architecture }} #(2)!
chroot_default: true #(3)!
pre-actions: #(4)!
...
post-actions: #(5)!
...
- [Optional] Description, for documentation purposes
- [Required] Architecture for which the Debos recipe should be generated
- [Optional] Whether the actions should be executed in the target
filesystem. This is option is only added to Simple-CDD-YAML actions, if the
keyword
chroot
isn't set. - [Required] Debos specific actions that should be included before the Simple-CDD-YAML recipe.
- [Required] Debos specific actions that should be included after the Simple-CDD-YAML recipe.
Implementation
DebosAction
Bases: Action
Debos action