From: Alfredo Deza Date: Mon, 29 Aug 2016 18:51:23 +0000 (-0400) Subject: [BZ-1304533] make the default components for installation in ubuntu be ceph and ceph-mds X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=b01757895da28607638fd76faea914e7dff13d14;p=ceph-deploy.git [BZ-1304533] make the default components for installation in ubuntu be ceph and ceph-mds Signed-off-by: Alfredo Deza --- diff --git a/ceph_deploy/util/constants.py b/ceph_deploy/util/constants.py index 74833b7..646ffd9 100644 --- a/ceph_deploy/util/constants.py +++ b/ceph_deploy/util/constants.py @@ -27,6 +27,6 @@ default_components = namedtuple('DefaultComponents', ['rpm', 'deb']) # the difference here is because RPMs currently name the radosgw differently than DEBs. # TODO: This needs to get unified once the packaging naming gets consistent default_components.rpm = tuple(_base_components + ['ceph-radosgw']) -default_components.deb = tuple(_base_components + ['radosgw']) +default_components.deb = tuple(['ceph', 'radosgw']) gpg_key_base_url = "download.ceph.com/keys/"