mirror of https://github.com/ceph/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 <dfuller@redhat.com>pull/1662/head
parent
78d95aeb63
commit
79ba50cd9f
|
@ -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}}/"
|
||||
|
|
Loading…
Reference in New Issue