From 5d429f696f13d478b59d1daad388e775732e84ea Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Mon, 11 Dec 2017 18:48:13 +0100 Subject: [PATCH] defaults: fix CI issue with ceph_uid fact MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The CI complains because of `ceph_uid` fact which doesn't exist since the docker image tag used in the CI doesn't match with this condition. Signed-off-by: Guillaume Abrioux (cherry picked from commit 6a9b5c9632a39d290ebf707a21e98f17b064f198) Signed-off-by: Sébastien Han --- roles/ceph-defaults/tasks/facts.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/ceph-defaults/tasks/facts.yml b/roles/ceph-defaults/tasks/facts.yml index 31edb520d..0bf156831 100644 --- a/roles/ceph-defaults/tasks/facts.yml +++ b/roles/ceph-defaults/tasks/facts.yml @@ -157,7 +157,7 @@ ceph_uid: 64045 when: - containerized_deployment - - ceph_docker_image_tag | match("latest") or ceph_docker_image_tag | search("ubuntu") + - ceph_docker_image_tag | search("latest") or ceph_docker_image_tag | search("ubuntu") - name: set_fact ceph_uid for Red Hat based system set_fact: -- 2.39.5