From 84f69675589a28ca5ee94c5dc4c1d4b2fe3e2c25 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Sat, 6 Dec 2025 13:36:43 +0100 Subject: [PATCH] importctl: fix confusion in --help See parent commit for explanation. --- src/import/importctl.c | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/import/importctl.c b/src/import/importctl.c index d131943413d..eddddb86d1f 100644 --- a/src/import/importctl.c +++ b/src/import/importctl.c @@ -1035,12 +1035,15 @@ static int help(int argc, char *argv[], void *userdata) { " --format=xz|gzip|bzip2|zstd\n" " Desired output format for export\n" " --force Install image even if already exists\n" - " -m --class=machine Install as machine image\n" - " -P --class=portable Install as portable service image\n" - " -S --class=sysext Install as system extension image\n" - " -C --class=confext Install as configuration extension image\n" + " --class=TYPE Install as the specified TYPE\n" + " -m Install as --class=machine, machine image\n" + " -P Install as --class=portable,\n" + " portable service image\n" + " -S Install as --class=sysext, system extension image\n" + " -C Install as --class=confext,\n" + " configuration extension image\n" " --keep-download=BOOL Control whether to keep pristine copy of download\n" - " -N Shortcut for --keep-download=no\n" + " -N Same as --keep-download=no\n" "\nSee the %2$s for details.\n", program_invocation_short_name, link, -- 2.47.3