]> git.apps.os.sepia.ceph.com Git - teuthology.git/commitdiff
misc: get_system_type: openSUSE means rpm
authorNathan Cutler <ncutler@suse.com>
Sun, 4 Mar 2018 05:37:28 +0000 (06:37 +0100)
committerKyr Shatskyy <kyrylo.shatskyy@suse.com>
Fri, 26 Apr 2019 07:06:21 +0000 (09:06 +0200)
2018-03-03T23:59:57.524 INFO:teuthology.orchestra.run.target149202163177:Running: 'sudo lsb_release -is'
2018-03-03T23:59:57.600 INFO:teuthology.orchestra.run.target149202163177.stdout:openSUSE
2018-03-03T23:59:57.601 DEBUG:teuthology.misc:System to be installed: openSUSE

Signed-off-by: Nathan Cutler <ncutler@suse.com>
teuthology/misc.py

index 8808c403b2426c1cd7d273b317e0cac01cac3191..f25ed696db069027b7d4e517e06ad82458011d66 100644 (file)
@@ -1281,7 +1281,7 @@ def get_system_type(remote, distro=False, version=False):
     if system_value in ['Ubuntu', 'Debian']:
         return "deb"
     if system_value in ['CentOS', 'Fedora', 'RedHatEnterpriseServer',
-                        'openSUSE project', 'SUSE', 'SUSE LINUX']:
+                        'openSUSE', 'openSUSE project', 'SUSE', 'SUSE LINUX']:
         return "rpm"
     return system_value