From dd120dc5de72a477754d0376368312a57b7f4a1c Mon Sep 17 00:00:00 2001 From: Markus Hilger Date: Thu, 16 Jul 2026 18:18:33 +0200 Subject: [PATCH] Allow el10 capture in imgutil --- imgutil/imgutil | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imgutil/imgutil b/imgutil/imgutil index 177e3495..ff8d68b7 100644 --- a/imgutil/imgutil +++ b/imgutil/imgutil @@ -214,7 +214,7 @@ async def capture_remote(args): subprocess.check_call(['rsync', __file__, '{0}:/run/imgutil/capenv/'.format(targ)]) finfo = subprocess.check_output(['ssh', targ, 'python3', '/run/imgutil/capenv/imgutil', 'getfingerprint']).decode('utf8') finfo = json.loads(finfo) - if finfo['oscategory'] not in ('el8', 'el9', 'ubuntu20.04', 'ubuntu22.04', 'ubuntu24.04', 'ubuntu26.04'): + if finfo['oscategory'] not in ('el8', 'el9', 'el10', 'ubuntu20.04', 'ubuntu22.04', 'ubuntu24.04', 'ubuntu26.04'): sys.stderr.write('Not yet supported for capture: ' + repr(finfo) + '\n') sys.exit(1) unmet = finfo.get('unmetprereqs', [])