]> git.apps.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
ceph-osd: do not ignore ceph-disk errors in bluestore
authorAlfredo Deza <adeza@redhat.com>
Thu, 2 Jun 2016 21:15:35 +0000 (17:15 -0400)
committerAlfredo Deza <adeza@redhat.com>
Thu, 2 Jun 2016 21:15:35 +0000 (17:15 -0400)
Signed-off-by: Alfredo Deza <adeza@redhat.com>
Resolves: rhbz#1342117

roles/ceph-osd/tasks/scenarios/bluestore.yml

index c09b057351a7fdc0d0729eb14c2943dbebc7d361..21cdf565cf5d6af11085a2c9edf46a0ccae7af68 100644 (file)
@@ -11,7 +11,6 @@
 # failed, this is why we check if the device is a partition too.
 - name: automatic prepare osd disk(s) without partitions
   command: ceph-disk prepare --bluestore --cluster "{{ cluster }}" "/dev/{{ item.key }}"
-  ignore_errors: true
   register: prepared_osds
   with_dict: ansible_devices
   when:
@@ -23,7 +22,6 @@
 
 - name: manually prepare osd disk(s)
   command: ceph-disk prepare --bluestore --cluster "{{ cluster }}" "{{ item.2 }}"
-  ignore_errors: true
   with_together:
     - combined_parted_results.results
     - combined_ispartition_results.results