diff --git a/confluent_server/confluent/osimage.py b/confluent_server/confluent/osimage.py index 97035f9e..bf0c31ef 100644 --- a/confluent_server/confluent/osimage.py +++ b/confluent_server/confluent/osimage.py @@ -346,7 +346,7 @@ def _priv_check_oraclelinux(isoinfo): ver = None arch = None for entry in isoinfo[0]: - if 'oraclelinux-release-' in entry: + if 'oraclelinux-release-' in entry and 'release-el7' not in entry: ver = entry.split('-')[2] arch = entry.split('.')[-2] break