From f3fdf2e3f6a17e7a7eecca1453bb89b7cca97ca1 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Mon, 4 Nov 2024 13:48:56 -0500 Subject: [PATCH] prepare-root: Fix composefs docs In practice in ostree-sysroot-deploy.c we only react to having `composefs = yes`; the docs mention `maybe` but that never did anything. The value is wrong in the code too, but I'm not touching that here to avoid conflating changes - the main thing to fix is the docs because here `maybe == no`. Signed-off-by: Colin Walters --- man/ostree-prepare-root.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/man/ostree-prepare-root.xml b/man/ostree-prepare-root.xml index 8a682e7315..70371b7bc5 100644 --- a/man/ostree-prepare-root.xml +++ b/man/ostree-prepare-root.xml @@ -137,11 +137,11 @@ License along with this library. If not, see . composefs.enabled - This can be yes, no. maybe or - signed. The default is maybe. If set to yes or + This can be yes, no, maybe, + or signed. The default is no. If set to yes or signed, then composefs is always used, and the boot fails if it is not available. Additionally if set to signed, boot will fail if the image cannot be - validated by a public key. If set to maybe, then composefs is used if supported. + validated by a public key. Setting this to maybe is currently equivalent to no.