docker-common: fix wrong syntax

there is no need to backslash the quotes here.

Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
pull/1955/head
Guillaume Abrioux 2017-09-27 23:34:30 +02:00
parent 254c12b07e
commit d20dc54202
1 changed files with 1 additions and 1 deletions

View 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