From 78462e6c13c225b047bcabb6448f2b33e07b5bbd Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Wed, 19 Mar 2025 16:35:44 -0400 Subject: [PATCH] base-imagectl: Drop `experimental` from compose-rootfs It's stable in 2025.6 which is hopefully going to ship in Fedora 41 soon and is already in C10S and C9S. --- bootc-base-imagectl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootc-base-imagectl b/bootc-base-imagectl index 80d5307..6f1e9da 100755 --- a/bootc-base-imagectl +++ b/bootc-base-imagectl @@ -20,7 +20,7 @@ def run_build_rootfs(args): manifest_path = os.path.join(args.manifest, 'manifest.yaml') else: manifest_path = args.manifest + '.yaml' - rpmostree_argv = ['rpm-ostree', 'experimental', 'compose', 'rootfs'] + rpmostree_argv = ['rpm-ostree', 'compose', 'rootfs'] try: # Assume we can mutate alternative roots if args.source_root != '/':