mirror of https://github.com/ceph/ceph-ansible.git
common: fix rundep installation
see: https://bugzilla.redhat.com/show_bug.cgi?id=1382878 Signed-off-by: Sébastien Han <seb@redhat.com>pull/1023/head
parent
b32f3dac6c
commit
dafb100e2a
|
@ -58,7 +58,7 @@
|
||||||
copy:
|
copy:
|
||||||
src: "{{ansible_dir}}/rundep"
|
src: "{{ansible_dir}}/rundep"
|
||||||
dest: "{{ item }}"
|
dest: "{{ item }}"
|
||||||
with_items: "{{ rundep_location }}.stdout_lines"
|
with_items: "{{ (rundep_location|default({})).stdout_lines|default([]) }}"
|
||||||
when:
|
when:
|
||||||
- ceph_origin == 'local'
|
- ceph_origin == 'local'
|
||||||
- use_installer
|
- use_installer
|
||||||
|
@ -66,7 +66,7 @@
|
||||||
- name: install ceph dependencies
|
- name: install ceph dependencies
|
||||||
script: "{{ ansible_dir }}/rundep_installer.sh {{ item }}"
|
script: "{{ ansible_dir }}/rundep_installer.sh {{ item }}"
|
||||||
become: true
|
become: true
|
||||||
with_items: "{{ rundep_location }}.stdout_lines"
|
with_items: "{{ (rundep_location|default({})).stdout_lines|default([]) }}"
|
||||||
when:
|
when:
|
||||||
- ceph_origin == 'local'
|
- ceph_origin == 'local'
|
||||||
- use_installer
|
- use_installer
|
||||||
|
|
Loading…
Reference in New Issue