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
Michael Sambol 2015-08-17 11:14:06 -05:00
parent 861d7296ef
commit f132188658
1 changed files with 2 additions and 5 deletions

View File

@ -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
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