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
Douglas Fuller 2017-07-06 17:29:43 +00:00
parent 78d95aeb63
commit 79ba50cd9f
1 changed files with 7 additions and 0 deletions

View File

@ -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}}/"