]> git.apps.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
purge: containers are not stopped 2161/head
authorGuillaume Abrioux <gabrioux@redhat.com>
Wed, 25 Oct 2017 05:48:42 +0000 (07:48 +0200)
committerGuillaume Abrioux <gabrioux@redhat.com>
Fri, 10 Nov 2017 10:42:57 +0000 (11:42 +0100)
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>
(cherry picked from commit f90f2f3a044ce18bf2b7b6b094857d886d7d41f2)

infrastructure-playbooks/purge-docker-cluster.yml

index 3e301bf6783e9c9d28a4dc235f60d38bc82b43f2..8a46ab8cdb671fbdf03862d01eb967ac6918c027 100644 (file)
 
   - name: disable ceph osd service
     service:
-      name: "ceph-osd@{{ item }}"
+      name: "{{ item }}"
       state: stopped
       enabled: no
     with_items: "{{ osd_units.stdout_lines }}"