osd: remove legacy file

this file is not used anymore, let's remove it.

Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
(cherry picked from commit f899da3172)
pull/3857/head
Guillaume Abrioux 2019-04-11 16:51:03 +02:00 committed by mergify[bot]
parent 90ab8ecaaa
commit 22d39591a4
1 changed files with 0 additions and 19 deletions

View File

@ -1,19 +0,0 @@
---
- name: check the partition status of the osd disks
command: "blkid -t PTTYPE=\"gpt\" {{ item }}"
with_items:
- "{{ devices }}"
changed_when: false
failed_when: false
check_mode: no
register: osd_partition_status_results
- name: create gpt disk label
command: "parted -s {{ item.1 }} mklabel gpt"
with_together:
- "{{ osd_partition_status_results.results }}"
- "{{ devices }}"
changed_when: false
when:
- not item.0.get("skipped")
- item.0.get("rc", 0) != 0