From: Douglas Fuller Date: Thu, 6 Jul 2017 17:29:43 +0000 (+0000) Subject: common: ensure rsync is installed for local install X-Git-Tag: v2.3.0rc2~7^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F1662%2Fhead;p=ceph-ansible.git 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 --- 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}}/"