mirror of https://github.com/ceph/ceph-ansible.git
Remove parition check from ceph-osd role
I'm removing the ceph paritition check from `activate osd(s) when device is a disk` because the ceph parition does not exist when parted was registered (on a fresh install). This was causing the activate step to be skipped.pull/382/head
parent
861d7296ef
commit
f132188658
|
@ -5,14 +5,11 @@
|
|||
command: |
|
||||
ceph-disk activate {{ item.2 | regex_replace('^(\/dev\/cciss\/c[0-9]{1}d[0-9]{1})$', '\\1p') }}1
|
||||
with_together:
|
||||
- parted.results
|
||||
- ispartition.results
|
||||
- devices
|
||||
changed_when: false
|
||||
failed_when: false
|
||||
when:
|
||||
item.0.rc == 0 and
|
||||
item.1.rc != 0
|
||||
failed_when: false
|
||||
when: item.0.rc != 0
|
||||
|
||||
# NOTE (leseb): this task is for partitions because we don't explicitly use a partition.
|
||||
- name: activate osd(s) when device is a partition
|
||||
|
|
Loading…
Reference in New Issue