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
Guillaume Abrioux 2017-10-25 07:48:42 +02:00
parent 280de30484
commit f90f2f3a04
1 changed files with 1 additions and 1 deletions

View File

@ -277,7 +277,7 @@
- name: disable ceph osd service
service:
name: "ceph-osd@{{ item }}"
name: "{{ item }}"
state: stopped
enabled: no
with_items: "{{ osd_units.stdout_lines }}"