From: Vimal Date: Thu, 7 Jul 2016 12:34:10 +0000 (+0530) Subject: [RM-16651] Installs `diamond` while executing `ceph-deploy calamari connect`. X-Git-Tag: v1.5.35~4^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=50437be3fd636c0b58417da31047cc22ed1ca403;p=ceph-deploy.git [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 --- 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']: