From d737ecb396fee83db7c4515be2e3d163924c7b20 Mon Sep 17 00:00:00 2001 From: Michal Konecny Date: Fri, 28 Jul 2023 13:55:14 +0200 Subject: [PATCH] [Pagure] Disable OIDC for staging pagure The OIDC is not working yet on staging pagure and the work is being done in https://pagure.io/fedora-infra/ansible/pull-request/1514 Signed-off-by: Michal Konecny --- roles/pagure/templates/pagure.cfg | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/roles/pagure/templates/pagure.cfg b/roles/pagure/templates/pagure.cfg index f250c9ef06..cfaf191c09 100644 --- a/roles/pagure/templates/pagure.cfg +++ b/roles/pagure/templates/pagure.cfg @@ -197,8 +197,9 @@ DISABLED_PLUGINS = ['IRC'] # `local` # Default: ``fas``. {% if env == 'pagure-staging' %} -PAGURE_AUTH = 'oidc' -OIDC_CLIENT_SECRETS = "/etc/pagure/client_secrets.json" +PAGURE_AUTH = 'openid' +#PAGURE_AUTH = 'oidc' +#OIDC_CLIENT_SECRETS = "/etc/pagure/client_secrets.json" {% else %} PAGURE_AUTH = 'openid' {% endif %}