From: ksharma Date: Fri, 23 May 2014 13:57:07 +0000 (+0200) Subject: updated the get_system_type function X-Git-Tag: 1.1.0~1432^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=0b97eba3648bdeffa27b7134445c0aa5b6a022f8;p=teuthology.git 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 --- diff --git a/teuthology/misc.py b/teuthology/misc.py index bee5e3fcaf..15cbcf007e 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