From: Guillaume Abrioux Date: Wed, 25 Oct 2017 05:48:42 +0000 (+0200) Subject: purge: containers are not stopped X-Git-Tag: beta-3.1.0~89^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=f90f2f3a044ce18bf2b7b6b094857d886d7d41f2;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 --- diff --git a/infrastructure-playbooks/purge-docker-cluster.yml b/infrastructure-playbooks/purge-docker-cluster.yml index 775cd472e..4526a4a56 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 }}"