Conf Action
The conf
action defines the contents of the <profile>.conf
file. This file
contains normal variables and environment variables.
Tip
Have a look at the source code of Simple-CDD on variables, to see which variables and environment variables are supported.
Usage
Click on the to learn more about the action's options.
Conf Action
{% set profile=profile or "base" -%}
{% set mirror_components=mirror_components or "main" -%}
{% set disk_type=disk_type or "DVD" -%}
{% set dist=dist or "bookworm" -%}
- action: conf
description: Simple-CDD configuration settings # (1)!
variables: # (2)!
profiles: {{profile}}
auto_profiles: {{profile}}
mirror_components: {{mirror_components}}
env_variables: # (3)!
DISKTYPE: {{disk_type}}
CODENAME: {{dist}}
- [Optional] Description, for documentation purposes
- [Optional] Variable definitions
- [Optional] Environment variable definitions
Implementation
ConfAction
Bases: Action
Conf action