From 7955d9133c6006d2b8cf407a6ca1dbf62dcd0c14 Mon Sep 17 00:00:00 2001 From: Brad Stein Date: Thu, 1 Jan 2026 12:22:22 -0300 Subject: [PATCH] jellyfin: fix LDAP auth provider id --- services/jellyfin/deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/jellyfin/deployment.yaml b/services/jellyfin/deployment.yaml index faec4f7..88fa9dd 100644 --- a/services/jellyfin/deployment.yaml +++ b/services/jellyfin/deployment.yaml @@ -61,7 +61,7 @@ spec: apk add --no-cache sqlite db="/config/data/jellyfin.db" if [ -f "$db" ]; then - sqlite3 "$db" "UPDATE Users SET AuthenticationProviderId='958aad66-3784-4d2a-b89a-a7b6fab6e25c', Password=NULL, EnableLocalPassword=0 WHERE AuthenticationProviderId!='958aad66-3784-4d2a-b89a-a7b6fab6e25c';" + sqlite3 "$db" "UPDATE Users SET AuthenticationProviderId='Jellyfin.Plugin.LDAP_Auth.LdapAuthenticationProviderPlugin', Password=NULL, EnableLocalPassword=0 WHERE AuthenticationProviderId!='Jellyfin.Plugin.LDAP_Auth.LdapAuthenticationProviderPlugin';" else echo "db not found at $db, skipping" fi