From 220e07e84243a5d6c7afe64854d0c13d6e93df01 Mon Sep 17 00:00:00 2001 From: =?utf8?q?S=C3=A9bastien=20Han?= Date: Mon, 27 Jul 2015 17:48:04 +0200 Subject: [PATCH] Fix wrong condition MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit We obviously want to fetch when the files exists :). Signed-off-by: Sébastien Han --- roles/ceph-mds/tasks/docker.yml | 2 +- roles/ceph-mon/tasks/docker.yml | 2 +- roles/ceph-osd/tasks/scenarios/docker.yml | 2 +- roles/ceph-restapi/tasks/docker.yml | 2 +- roles/ceph-rgw/tasks/docker.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/roles/ceph-mds/tasks/docker.yml b/roles/ceph-mds/tasks/docker.yml index c77af3618..2707c4eb6 100644 --- a/roles/ceph-mds/tasks/docker.yml +++ b/roles/ceph-mds/tasks/docker.yml @@ -31,7 +31,7 @@ with_together: - ceph_config_keys - statconfig.results - when: item.1.stat.exists == False + when: item.1.stat.exists == true - name: run the ceph medata docker image docker: > diff --git a/roles/ceph-mon/tasks/docker.yml b/roles/ceph-mon/tasks/docker.yml index e531d520b..f3b818772 100644 --- a/roles/ceph-mon/tasks/docker.yml +++ b/roles/ceph-mon/tasks/docker.yml @@ -30,7 +30,7 @@ with_together: - ceph_config_keys - statconfig.results - when: item.1.stat.exists == False + when: item.1.stat.exists == true - name: run the ceph Monitor docker image docker: > diff --git a/roles/ceph-osd/tasks/scenarios/docker.yml b/roles/ceph-osd/tasks/scenarios/docker.yml index 6de81db7e..a9e7d0f64 100644 --- a/roles/ceph-osd/tasks/scenarios/docker.yml +++ b/roles/ceph-osd/tasks/scenarios/docker.yml @@ -31,7 +31,7 @@ with_together: - ceph_config_keys - statconfig.results - when: item.1.stat.exists == False + when: item.1.stat.exists == true - name: run the ceph osd docker image docker: > diff --git a/roles/ceph-restapi/tasks/docker.yml b/roles/ceph-restapi/tasks/docker.yml index 5c5839e66..268f82675 100644 --- a/roles/ceph-restapi/tasks/docker.yml +++ b/roles/ceph-restapi/tasks/docker.yml @@ -28,7 +28,7 @@ with_together: - ceph_config_keys - statconfig.results - when: item.1.stat.exists == False + when: item.1.stat.exists == true - name: run the ceph rest api docker image docker: > diff --git a/roles/ceph-rgw/tasks/docker.yml b/roles/ceph-rgw/tasks/docker.yml index 7d8716028..6445b7472 100644 --- a/roles/ceph-rgw/tasks/docker.yml +++ b/roles/ceph-rgw/tasks/docker.yml @@ -31,7 +31,7 @@ with_together: - ceph_config_keys - statconfig.results - when: item.1.stat.exists == False + when: item.1.stat.exists == true - name: run the rados gateway docker image docker: > -- 2.47.3