ldap/admin/src/scripts/50contentsync.ldif | 1 + 1 file changed, 1 insertion(+)
New commits: commit 8bfefb6244240ec1a243231057f00e0a5499f37a Author: Nathan Kinder nkinder@redhat.com Date: Tue Oct 22 15:24:36 2013 -0700
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. (cherry picked from commit bf1203a0916cdbee27651644b85aa21e6de1224b)
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
389-commits@lists.fedoraproject.org