41 lines
1.2 KiB
Diff
41 lines
1.2 KiB
Diff
From b132956e42a88ab39bb8d6a854e7c5d28d544a11 Mon Sep 17 00:00:00 2001
|
|
From: Florence Blanc-Renaud <flo@redhat.com>
|
|
Date: Fri, 16 Jul 2021 09:43:54 +0200
|
|
Subject: [PATCH] Index: Fix definition for memberOf
|
|
|
|
The index definition for memberOf is inconsistent:
|
|
|
|
dn: cn=memberOf,cn=index,cn=userRoot,cn=ldbm database,cn=plugins,cn=config
|
|
cn: member
|
|
nsIndexType: eq
|
|
nsIndexType: sub
|
|
nsSystemIndex: false
|
|
objectClass: top
|
|
objectClass: nsIndex
|
|
|
|
The cn attribute should be memberOf, not member. Fix the definition.
|
|
|
|
Fixes: https://pagure.io/freeipa/issue/8920
|
|
Signed-off-by: Florence Blanc-Renaud <flo@redhat.com>
|
|
Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com>
|
|
---
|
|
install/updates/20-indices.update | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/install/updates/20-indices.update b/install/updates/20-indices.update
|
|
index d6df5b37d..cb1a11dd5 100644
|
|
--- a/install/updates/20-indices.update
|
|
+++ b/install/updates/20-indices.update
|
|
@@ -434,7 +434,7 @@ add:nsIndexType: eq
|
|
add:nsIndexType: pres
|
|
|
|
dn: cn=memberOf,cn=index,cn=userRoot,cn=ldbm database,cn=plugins,cn=config
|
|
-only:cn: member
|
|
+only:cn: memberOf
|
|
add:nsIndexType: sub
|
|
|
|
dn: cn=memberPrincipal,cn=index,cn=userRoot,cn=ldbm database,cn=plugins,cn=config
|
|
--
|
|
2.26.3
|
|
|