From f9bc249b2baa11a8ac0eb54e4077eb706d137e38 Mon Sep 17 00:00:00 2001 From: Firstyear Date: Thu, 19 Aug 2021 11:06:06 +1000 Subject: [PATCH] Issue 4872 - BUG - entryuuid enabled by default causes replication issues (#4876) Bug Description: Due to older servers missing the syntax plugin this breaks schema replication and causes cascading errors. Fix Description: This changes the syntax to be a case insensitive string, while leaving the plugins in place for other usage. fixes: https://github.com/389ds/389-ds-base/issues/4872 Author: William Brown Review by: @mreynolds389 @progier389 --- ldap/schema/03entryuuid.ldif | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ldap/schema/03entryuuid.ldif b/ldap/schema/03entryuuid.ldif index cbde981fe..f7a7f40d5 100644 --- a/ldap/schema/03entryuuid.ldif +++ b/ldap/schema/03entryuuid.ldif @@ -13,4 +13,5 @@ dn: cn=schema # # attributes # -attributeTypes: ( 1.3.6.1.1.16.4 NAME 'entryUUID' DESC 'UUID of the entry' EQUALITY UUIDMatch ORDERING UUIDOrderingMatch SYNTAX 1.3.6.1.1.16.1 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation ) +# attributeTypes: ( 1.3.6.1.1.16.4 NAME 'entryUUID' DESC 'UUID of the entry' EQUALITY UUIDMatch ORDERING UUIDOrderingMatch SYNTAX 1.3.6.1.1.16.1 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation ) +attributeTypes: ( 1.3.6.1.1.16.4 NAME 'entryUUID' DESC 'UUID of the entry' EQUALITY caseIgnoreMatch ORDERING caseIgnoreOrderingMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation ) -- 2.31.1