From a4b1f1d30a89917d806cdf2b80eafaf7c453551f Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Mon, 29 Nov 2021 15:54:38 -0500 Subject: [PATCH] Fix typo in fedora coreos signature --- confluent_server/confluent/osimage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/confluent_server/confluent/osimage.py b/confluent_server/confluent/osimage.py index 74e78ca9..2131ffcb 100644 --- a/confluent_server/confluent/osimage.py +++ b/confluent_server/confluent/osimage.py @@ -453,7 +453,7 @@ def check_coreos(isoinfo): ver = inf.split('-')[1] return {'name': 'rhcos-{0}-{1}'.format(ver, arch), 'method': EXTRACT, 'category': 'coreos'} - elif inf.startswith('coreos.liveiso=fedore-coreos-'): + elif inf.startswith('coreos.liveiso=fedora-coreos-'): ver = inf.split('-')[2] return {'name': 'fedoracoreos-{0}-{1}'.format(ver, arch), 'method': EXTRACT, 'category': 'coreos'}