From 52f33d56b70649c83bf6b972bbdab340ceb21e4e Mon Sep 17 00:00:00 2001 From: Christian Kellner Date: Wed, 13 May 2020 18:41:47 +0200 Subject: [PATCH] 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. --- osbuild/util/ostree.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/osbuild/util/ostree.py b/osbuild/util/ostree.py index f9082212..5467d776 100644 --- a/osbuild/util/ostree.py +++ b/osbuild/util/ostree.py @@ -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):