mirror of
https://github.com/parchlinux/calamares.git
synced 2025-02-24 10:55:46 -05:00
[contextualprocess] Document new behavior for compound keys
This commit is contained in:
parent
d114a3dc21
commit
4a5b3e7bc8
1 changed files with 14 additions and 0 deletions
|
@ -13,6 +13,17 @@
|
|||
# to the variable's value. If the variable has that particular value, the
|
||||
# corresponding value (script) is executed.
|
||||
#
|
||||
# The variable **may** contain dots, in which case the dot is used
|
||||
# to select into maps inside global storage, e.g.
|
||||
#
|
||||
# - *firmwareType* is a simple global name
|
||||
# - *branding.bootloader* is the *bootloader* value in the *branding* map
|
||||
#
|
||||
# Only a few global storage entries have well-defined sub-maps;
|
||||
# branding is one of them, and *filesystem_use* is another. Note that
|
||||
# variable names with dots **must** be quoted, or you will get a YAML error.
|
||||
#
|
||||
#
|
||||
# You can check for an empty value with "".
|
||||
#
|
||||
# As a special case, the value-check "*" matches any value, but **only**
|
||||
|
@ -44,3 +55,6 @@ firmwareType:
|
|||
bios: "-pkg remove bios-firmware"
|
||||
"": "/bin/false no-firmware-type-set"
|
||||
"*": "/bin/false some-other-firmware-value"
|
||||
"branding.shortVersion":
|
||||
"2020.2": "/bin/false february"
|
||||
"2019.4": "/bin/true april"
|
||||
|
|
Loading…
Add table
Reference in a new issue