From 7bc783b95b2e115f40a4db8823823573afe7a768 Mon Sep 17 00:00:00 2001 From: Nathan Kinder Date: Fri, 31 Jan 2014 16:54:10 -0800 Subject: [PATCH] LDAP root DN creation fails When keystone is configured to set up an LDAP server to use as it's identity backend, the creation of the root DN fails. The problem is that one of the mods in the modify operation that sets up the root DN is incorrect, which causes the entire modify operation to fail. The incorrect mod is attempting to configure some attribute indexes, but one of the attributes it specifies is undefined. This patch removes the undefined attribute from the template that is used to create the modify operation. Change-Id: I413587130c64ca4f5f467b2ea1c0ab12867999ce Closes-Bug: 1275158 --- files/ldap/manager.ldif.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/ldap/manager.ldif.in b/files/ldap/manager.ldif.in index de3b69de7c..2f1f1395ee 100644 --- a/files/ldap/manager.ldif.in +++ b/files/ldap/manager.ldif.in @@ -12,4 +12,4 @@ olcRootPW: ${SLAPPASS} replace: olcDbIndex olcDbIndex: objectClass eq olcDbIndex: default pres,eq -olcDbIndex: cn,sn,givenName,co +olcDbIndex: cn,sn,givenName