]> git.apps.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
docker-common: fix wrong syntax 1955/head
authorGuillaume Abrioux <gabrioux@redhat.com>
Wed, 27 Sep 2017 21:34:30 +0000 (23:34 +0200)
committerGuillaume Abrioux <gabrioux@redhat.com>
Wed, 27 Sep 2017 22:30:08 +0000 (00:30 +0200)
there is no need to backslash the quotes here.

Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
roles/ceph-docker-common/tasks/main.yml

index 34a35acfe150d70fbc5a043c6e05a411269b5c4c..c27a6791d11899a33e36423f056d6b4ff91e0e30 100644 (file)
@@ -47,7 +47,7 @@
 # AND
 # we are not playing rolling-update.yml playbook.
 - name: check if a cluster is already running
-  command: "docker ps -q --filter=\'name=ceph-mon-{{ ansible_hostname }}\'"
+  command: "docker ps -q --filter='name=ceph-mon-{{ ansible_hostname }}'"
   register: ceph_health
   changed_when: false
   failed_when: false