From bf1203a0916cdbee27651644b85aa21e6de1224b Mon Sep 17 00:00:00 2001 From: Nathan Kinder Date: Tue, 22 Oct 2013 15:24:36 -0700 Subject: [PATCH] Ticket 47565 - Content Sync update file needs extensibleObject The Content Sync Plug-in update file will cause a schema violation that causes dse.ldif to fail to load after upgrading an older DS instance. The problem is that the nsslapd-depends-on-name attribute is used, but the extensibleObject objectclass is not present for the config entry. This is required since nsslapd-depends-on-named is not really defined in the schema like a normal attribute. --- ldap/admin/src/scripts/50contentsync.ldif | 1 + 1 file changed, 1 insertion(+) diff --git a/ldap/admin/src/scripts/50contentsync.ldif b/ldap/admin/src/scripts/50contentsync.ldif index 0f15bdb..c48202b 100644 --- a/ldap/admin/src/scripts/50contentsync.ldif +++ b/ldap/admin/src/scripts/50contentsync.ldif @@ -1,6 +1,7 @@ dn: cn=Content Synchronization,cn=plugins,cn=config objectclass: top objectclass: nsSlapdPlugin +objectclass: extensibleObject cn: Content Synchronization nsslapd-pluginpath: libcontentsync-plugin nsslapd-plugininitfunc: sync_init -- 1.8.1.4