From dc1994a66a5b66f8a141113f39cb514b92cf8354 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Thu, 29 Jun 2023 14:53:36 +0200 Subject: [PATCH] jicofo: remove shibboleth authentication options It got removed from Jicofo. --- jicofo/rootfs/defaults/jicofo.conf | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/jicofo/rootfs/defaults/jicofo.conf b/jicofo/rootfs/defaults/jicofo.conf index 2a639d7..6a54d93 100644 --- a/jicofo/rootfs/defaults/jicofo.conf +++ b/jicofo/rootfs/defaults/jicofo.conf @@ -28,20 +28,13 @@ jicofo { {{ if $JICOFO_ENABLE_AUTH }} authentication { enabled = true - // The type of authentication. Supported values are XMPP, JWT or SHIBBOLETH (default). + // The type of authentication. Supported values are XMPP or JWT. {{ if eq $AUTH_TYPE "jwt" }} type = JWT - {{ else if eq $AUTH_TYPE "shibboleth" }} - type = SHIBBOLETH {{ else }} type = XMPP {{ end }} - {{ if eq $AUTH_TYPE "shibboleth" }} - login-url = "shibboleth:default" - logout-url = "shibboleth:default" - {{ else }} login-url = "{{ $XMPP_DOMAIN }}" - {{ end }} enable-auto-login={{ $ENABLE_AUTO_LOGIN }} } {{ end }}