From 468afcfcf0763a2239621cf58d52ebee45392e7d Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Wed, 25 Oct 2017 07:48:42 +0200 Subject: [PATCH] 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) --- infrastructure-playbooks/purge-docker-cluster.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }}" -- 2.47.3