mirror of
https://github.com/parchlinux/calamares.git
synced 2025-03-02 13:55:44 -05:00
Module descriptors are now module.desc, no configuration allowed inside. Module config files are <modulename>.conf, installed in share/calamares/modules. settings.conf is read from /etc/calamares, then share/calamares, and if running with --debug also in the current dir. Module config files are read from /etc/calamares/modules, then share/calamares/modules, and if running with --debug also in src/modules/<modulename> relative to the current dir.
18 lines
No EOL
359 B
Text
18 lines
No EOL
359 B
Text
---
|
|
syntax: "YAML map of anything"
|
|
example:
|
|
whats_this: "module-specific configuration"
|
|
from_where: "dummypython.conf"
|
|
a_list:
|
|
- "item1"
|
|
- "item2"
|
|
- "item3"
|
|
- "item4"
|
|
a_list_of_maps:
|
|
- name: "an Item"
|
|
contents:
|
|
- "an element"
|
|
- "another element"
|
|
- name: "another item"
|
|
contents:
|
|
- "not much" |