From 0b97eba3648bdeffa27b7134445c0aa5b6a022f8 Mon Sep 17 00:00:00 2001 From: ksharma Date: Fri, 23 May 2014 15:57:07 +0200 Subject: [PATCH] updated the get_system_type function updated the get_system_type function to add the rpm condition for SUSE. Signed-off-by: ksharma@suse.com --- teuthology/misc.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/teuthology/misc.py b/teuthology/misc.py index bee5e3fcaf7c5..15cbcf007e729 100644 --- a/teuthology/misc.py +++ b/teuthology/misc.py @@ -1116,7 +1116,8 @@ def get_system_type(remote, distro=False): return system_value.lower() if system_value in ['Ubuntu', 'Debian']: return "deb" - if system_value in ['CentOS', 'Fedora', 'RedHatEnterpriseServer']: + if system_value in ['CentOS', 'Fedora', 'RedHatEnterpriseServer', + 'openSUSE project', 'SUSE LINUX']: return "rpm" return system_value -- 2.39.5