From: David Vossel Date: Mon, 30 Jun 2014 17:01:19 +0000 (-0500) Subject: Support install on rhel7 X-Git-Tag: v1.5.6~4 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=77b1c286f38474f0f30bc1a0615e9298c7c09c1b;p=ceph-deploy.git Support install on rhel7 --- diff --git a/ceph_deploy/hosts/centos/install.py b/ceph_deploy/hosts/centos/install.py index f66c91e..8e624d8 100644 --- a/ceph_deploy/hosts/centos/install.py +++ b/ceph_deploy/hosts/centos/install.py @@ -20,6 +20,8 @@ def repository_url_part(distro): if distro.normalized_name == 'redhat': if distro.release.startswith('6'): return 'rhel6' + elif distro.release.startswith('7'): + return 'rhel7' return 'el6'