From 91f6c08d8086fc68da30c5907830487ff5cc264e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Bompard?= Date: Thu, 17 Sep 2020 09:57:13 +0200 Subject: [PATCH] Fix syntax error MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Aurélien Bompard --- roles/openshift-apps/ipsilon/templates/Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/roles/openshift-apps/ipsilon/templates/Dockerfile b/roles/openshift-apps/ipsilon/templates/Dockerfile index 4744bce45f..3dd59ac4cb 100644 --- a/roles/openshift-apps/ipsilon/templates/Dockerfile +++ b/roles/openshift-apps/ipsilon/templates/Dockerfile @@ -1,13 +1,13 @@ FROM fedora:32 RUN curl -o /etc/yum.repos.d/infra-tags.repo https://infrastructure.fedoraproject.org/infra/ansible/files/common/fedora-infra-tags.repo -env == "staging" %} +{% if env == "staging" %} RUN curl -o /etc/yum.repos.d/infra-tags-stg.repo https://infrastructure.fedoraproject.org/infra/ansible/files/common/fedora-infra-tags-stg.repo RUN curl -o /etc/yum.repos.d/fedora-updates-testing.repo https://src.fedoraproject.org/rpms/fedora-repos/raw/master/f/fedora-updates-testing.repo -if %} +{% endif %} RUN dnf install -y \ -env == "staging" %} +{% if env == "staging" %} --enablerepo=updates-testing \ -if %} +{% endif %} ipsilon \ ipsilon-openid \ ipsilon-saml2 \