From 79ba50cd9f51fe58d14d9f5e5d2d5b266f1f978d Mon Sep 17 00:00:00 2001 From: Douglas Fuller Date: Thu, 6 Jul 2017 17:29:43 +0000 Subject: [PATCH] common: ensure rsync is installed for local install rsync is required by the ansible synchronize package. Ensure it is installed when local installation is selected. Signed-off-by: Douglas Fuller --- roles/ceph-common/tasks/installs/install_on_redhat.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/roles/ceph-common/tasks/installs/install_on_redhat.yml b/roles/ceph-common/tasks/installs/install_on_redhat.yml index e928d1323..e6129f845 100644 --- a/roles/ceph-common/tasks/installs/install_on_redhat.yml +++ b/roles/ceph-common/tasks/installs/install_on_redhat.yml @@ -49,6 +49,13 @@ - ceph_origin == 'local' - use_installer +- name: ensure rsync is installed + package: + name: rsync + state: present + when: + - ceph_origin == 'local' + - name: synchronize ceph install synchronize: src: "{{ceph_installation_dir}}/" -- 2.47.3