From 50437be3fd636c0b58417da31047cc22ed1ca403 Mon Sep 17 00:00:00 2001 From: Vimal Date: Thu, 7 Jul 2016 18:04:10 +0530 Subject: [PATCH] [RM-16651] Installs `diamond` while executing `ceph-deploy calamari connect`. Fixes http://tracker.ceph.com/issues/16651 `ceph-deploy calamari connect` does not install `diamond`. This patch tries to fix it by calling `distro.pkg.install()` for `diamond`. Signed-off-by: Vimal --- ceph_deploy/calamari.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ceph_deploy/calamari.py b/ceph_deploy/calamari.py index 8bece0b..9bbea65 100644 --- a/ceph_deploy/calamari.py +++ b/ceph_deploy/calamari.py @@ -57,6 +57,7 @@ def connect(args): ) distro.packager.install('salt-minion') + distro.packager.install('diamond') # redhat/centos need to get the service started if distro.normalized_name in ['redhat', 'centos']: -- 2.47.3