From: Guillaume Abrioux Date: Wed, 25 Oct 2017 05:48:42 +0000 (+0200) Subject: purge: containers are not stopped X-Git-Tag: v3.0.10~1^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F2161%2Fhead;p=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 (cherry picked from commit f90f2f3a044ce18bf2b7b6b094857d886d7d41f2) --- diff --git a/infrastructure-playbooks/purge-docker-cluster.yml b/infrastructure-playbooks/purge-docker-cluster.yml index 3e301bf67..8a46ab8cd 100644 --- a/infrastructure-playbooks/purge-docker-cluster.yml +++ b/infrastructure-playbooks/purge-docker-cluster.yml @@ -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 }}"