From 2acc1a06ecb3eab27ef6390f84454ebd35646aaf Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Wed, 27 Aug 2025 22:32:42 -0400 Subject: [PATCH] bootc-base-imagectl: clarify `--lock` help string Came up in !279. --- bootc-base-imagectl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootc-base-imagectl b/bootc-base-imagectl index 824d17d..25f01ef 100755 --- a/bootc-base-imagectl +++ b/bootc-base-imagectl @@ -178,7 +178,7 @@ if __name__ == "__main__": build_rootfs.add_argument("--sysusers", help="Run systemd-sysusers instead of injecting hardcoded passwd/group entries", action='store_true') build_rootfs.add_argument("--nobody-99", help=argparse.SUPPRESS, action='store_true') build_rootfs.add_argument("--repo", help="Enable specific repositories only", action='append', default=[], metavar='REPO') - build_rootfs.add_argument("--lock", help="Lock package to specific version", action='append', default=[], metavar='NEVRA') + build_rootfs.add_argument("--lock", help="Lock package to specific version; can be NEVRA or NEVR", action='append', default=[], metavar='NEVRA') build_rootfs.add_argument("source_root", help="Path to the source root directory used for dnf configuration (default=/)", nargs='?', default='/') build_rootfs.add_argument("target", help="Path to the target root directory that will be generated.") build_rootfs.set_defaults(func=run_build_rootfs)