mirror of https://github.com/ceph/ceph-ansible.git
osd: remove failed_when on activation
There is no need to continue if the activation fails. Signed-off-by: Sébastien Han <seb@redhat.com>pull/2186/head
parent
80d3a242d0
commit
b1c1322357
|
@ -7,7 +7,6 @@
|
|||
with_items:
|
||||
- "{{ devices|unique }}"
|
||||
changed_when: false
|
||||
failed_when: false
|
||||
register: activate_osd_disk
|
||||
when:
|
||||
- not osd_auto_discovery
|
||||
|
@ -18,7 +17,6 @@
|
|||
with_items:
|
||||
- "{{ devices|unique }}"
|
||||
changed_when: false
|
||||
failed_when: false
|
||||
register: activate_osd_disk_dmcrypt
|
||||
when:
|
||||
- not osd_auto_discovery
|
||||
|
@ -43,7 +41,6 @@
|
|||
with_items:
|
||||
- "{{ devices|unique }}"
|
||||
changed_when: false
|
||||
failed_when: false
|
||||
when:
|
||||
- not osd_auto_discovery
|
||||
- not dmcrypt
|
||||
|
|
Loading…
Reference in New Issue