]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
purge: containers are not stopped 2086/head
authorGuillaume Abrioux <gabrioux@redhat.com>
Wed, 25 Oct 2017 05:48:42 +0000 (07:48 +0200)
committerGuillaume Abrioux <gabrioux@redhat.com>
Wed, 25 Oct 2017 05:58:00 +0000 (07:58 +0200)
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>
infrastructure-playbooks/purge-docker-cluster.yml

index 775cd472e968f59d47bbaf8d17417223a24a056c..4526a4a566fb50fcddf8647d282bea76d62bc412 100644 (file)
 
   - name: disable ceph osd service
     service:
-      name: "ceph-osd@{{ item }}"
+      name: "{{ item }}"
       state: stopped
       enabled: no
     with_items: "{{ osd_units.stdout_lines }}"