mirror of https://github.com/ceph/ceph-ansible.git
purge: containers are not stopped
During purge osd, the containers are not stopped because of a typo, as a result, all the devices can't be unmounted later. Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>pull/2086/head
parent
280de30484
commit
f90f2f3a04
|
@ -277,7 +277,7 @@
|
||||||
|
|
||||||
- name: disable ceph osd service
|
- name: disable ceph osd service
|
||||||
service:
|
service:
|
||||||
name: "ceph-osd@{{ item }}"
|
name: "{{ item }}"
|
||||||
state: stopped
|
state: stopped
|
||||||
enabled: no
|
enabled: no
|
||||||
with_items: "{{ osd_units.stdout_lines }}"
|
with_items: "{{ osd_units.stdout_lines }}"
|
||||||
|
|
Loading…
Reference in New Issue