mirror of https://github.com/ceph/ceph-ansible.git
purge: allow purge to run multiple times
with_items is evaluated before the when so in a second run where the
variable is empty if will fail with "'dict object' has no attribute
'stdout_lines'". To fix this we had a default array so with_items does
not fail and the task is skipped with the when.
Signed-off-by: Sébastien Han <seb@redhat.com>
(cherry picked from commit 0e2e270ab2
)
pull/1259/head
parent
fa0fdee2c0
commit
15b89984aa
|
@ -436,7 +436,7 @@
|
||||||
raw_device=$(echo "{{ item }}" | egrep -o '/dev/([hsv]d[a-z]{1,2}|cciss/c[0-9]d[0-9]p|nvme[0-9]n[0-9]p){1,2}')
|
raw_device=$(echo "{{ item }}" | egrep -o '/dev/([hsv]d[a-z]{1,2}|cciss/c[0-9]d[0-9]p|nvme[0-9]n[0-9]p){1,2}')
|
||||||
partition_nb=$(echo "{{ item }}" | egrep -o '[0-9]{1,2}$')
|
partition_nb=$(echo "{{ item }}" | egrep -o '[0-9]{1,2}$')
|
||||||
sgdisk --delete $partition_nb $raw_device
|
sgdisk --delete $partition_nb $raw_device
|
||||||
with_items: "{{ ceph_journal_partition_to_erase_path.stdout_lines }}"
|
with_items: "{{ ceph_journal_partition_to_erase_path.stdout_lines | default([]) }}"
|
||||||
when:
|
when:
|
||||||
- ceph_journal_partlabels.rc == 0
|
- ceph_journal_partlabels.rc == 0
|
||||||
- raw_multi_journal is defined
|
- raw_multi_journal is defined
|
||||||
|
|
Loading…
Reference in New Issue