ostree: add 'initramfs-args' option to Treefile

Add the initramfs-args Treefile option that can be used to pass
arguments to drauct via rpm-ostree. NB: the ostree module will
always be automatically be included by rpm-ostree.
This commit is contained in:
Christian Kellner 2020-05-13 18:41:47 +02:00 committed by David Rheinsberg
parent c91333aea8
commit 52f33d56b7

View file

@ -61,7 +61,8 @@ class Treefile:
"selinux": Param(bool),
"boot-location": Param(str),
"etc-group-members": Param(List[str]),
"machineid-compat": Param(bool)
"machineid-compat": Param(bool),
"initramfs-args": Param(List[str]),
}
def __init__(self):