From 6a9b5c9632a39d290ebf707a21e98f17b064f198 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 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 --- 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 db5632e25..1ba8bf993 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