From ff63bb6b51dd44eca2d98c7a2d661afb2566f7ae Mon Sep 17 00:00:00 2001 From: Christian Kellner Date: Fri, 6 Aug 2021 13:54:38 +0000 Subject: [PATCH] stages/fstab: fix partabel option Use the `partlabel` value for the `partlabel` option instead of the `label` option. --- stages/org.osbuild.fstab | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stages/org.osbuild.fstab b/stages/org.osbuild.fstab index dbbbbd6c..f95214fc 100755 --- a/stages/org.osbuild.fstab +++ b/stages/org.osbuild.fstab @@ -146,7 +146,7 @@ def main(tree, options): elif label: fs_spec = f"LABEL={label}" elif partlabel: - fs_spec = f"PARTLABEL={label}" + fs_spec = f"PARTLABEL={partlabel}" elif device: fs_spec = device else: