mirror of https://github.com/ceph/ceph-ansible.git
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
parent
90ab8ecaaa
commit
22d39591a4
|
@ -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
|
Loading…
Reference in New Issue