From: Guillaume Abrioux Date: Wed, 27 Sep 2017 21:34:30 +0000 (+0200) Subject: docker-common: fix wrong syntax X-Git-Tag: v3.0.0rc12~1^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F1955%2Fhead;p=ceph-ansible.git docker-common: fix wrong syntax there is no need to backslash the quotes here. Signed-off-by: Guillaume Abrioux --- diff --git a/roles/ceph-docker-common/tasks/main.yml b/roles/ceph-docker-common/tasks/main.yml index 34a35acfe..c27a6791d 100644 --- a/roles/ceph-docker-common/tasks/main.yml +++ b/roles/ceph-docker-common/tasks/main.yml @@ -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