From 4fa0393ddc2bce485192b19aba18be90fa968cc7 Mon Sep 17 00:00:00 2001 From: Travis Rhoden Date: Wed, 5 Aug 2015 16:56:56 -0700 Subject: [PATCH] Don't allow install of ceph-mds on Ubuntu By adding ceph-mds into the list of non-split-packages, any request to install ceph-mds will result in an install of package ceph instead, thereby preventing the install of ceph-mds. Signed-off-by: Travis Rhoden --- ceph_deploy/hosts/debian/install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ceph_deploy/hosts/debian/install.py b/ceph_deploy/hosts/debian/install.py index 5eb538f..8d40e2e 100644 --- a/ceph_deploy/hosts/debian/install.py +++ b/ceph_deploy/hosts/debian/install.py @@ -4,7 +4,7 @@ from ceph_deploy.util.paths import gpg from ceph_deploy.hosts.common import map_components -NON_SPLIT_COMPONENTS = ['ceph-osd', 'ceph-mon'] +NON_SPLIT_COMPONENTS = ['ceph-osd', 'ceph-mon', 'ceph-mds'] def install(distro, version_kind, version, adjust_repos, **kw): -- 2.47.3