From 64f6a2d00df7a3cf954c3a331d80c9fa5760aa31 Mon Sep 17 00:00:00 2001 From: Marcus Watts Date: Sat, 31 Oct 2020 15:30:25 -0400 Subject: [PATCH] misc: CentOSStream => rpm lsb_release -is identifies CentOS 8 Stream as CentOSStream. Teuthology should recognize this as 'rpm'. Signed-off-by: Marcus Watts --- teuthology/misc.py | 1 + 1 file changed, 1 insertion(+) diff --git a/teuthology/misc.py b/teuthology/misc.py index 23e09069c2..29c21286d4 100644 --- a/teuthology/misc.py +++ b/teuthology/misc.py @@ -1174,6 +1174,7 @@ def get_system_type(remote, distro=False, version=False): return "deb" if system_value in ['CentOS', 'Fedora', 'RedHatEnterpriseServer', 'RedHatEnterprise', + 'CentOSStream', 'openSUSE', 'openSUSE project', 'SUSE', 'SUSE LINUX']: return "rpm" return system_value -- 2.39.5