From d28795910795fa0340620146b4156ed1c41f8198 Mon Sep 17 00:00:00 2001 From: Alfredo Deza Date: Thu, 2 Jun 2016 17:16:05 -0400 Subject: [PATCH] ceph-osd: do not ignore ceph-disk errors in journal_collocation Signed-off-by: Alfredo Deza Resolves: rhbz#1342117 --- roles/ceph-osd/tasks/scenarios/journal_collocation.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/roles/ceph-osd/tasks/scenarios/journal_collocation.yml b/roles/ceph-osd/tasks/scenarios/journal_collocation.yml index 139b0897f..e6fa42c44 100644 --- a/roles/ceph-osd/tasks/scenarios/journal_collocation.yml +++ b/roles/ceph-osd/tasks/scenarios/journal_collocation.yml @@ -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 --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 --cluster {{ cluster }} {{ item.2 }}" - ignore_errors: true with_together: - combined_parted_results.results - combined_ispartition_results.results