From: jimfunk Date: Wed, 13 Nov 2013 20:49:41 +0000 (-0800) Subject: Correctly detect openSUSE X-Git-Tag: v1.3.3~16^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=df652b94550c1e339cc95ee87df6af703d8b3758;p=ceph-deploy.git Correctly detect openSUSE --- diff --git a/ceph_deploy/hosts/__init__.py b/ceph_deploy/hosts/__init__.py index 953168f..f4ba203 100644 --- a/ceph_deploy/hosts/__init__.py +++ b/ceph_deploy/hosts/__init__.py @@ -77,6 +77,6 @@ def _normalized_distro_name(distro): return 'redhat' elif distro.startswith(('scientific', 'scientific linux')): return 'scientific' - elif distro.startswith('suse'): + elif distro.startswith(('suse', 'opensuse')): return 'suse' return distro