Blame SOURCES/0028-Issue-4872-BUG-entryuuid-enabled-by-default-causes-r.patch

e4a41f
From f9bc249b2baa11a8ac0eb54e4077eb706d137e38 Mon Sep 17 00:00:00 2001
e4a41f
From: Firstyear <william@blackhats.net.au>
e4a41f
Date: Thu, 19 Aug 2021 11:06:06 +1000
e4a41f
Subject: [PATCH] Issue 4872 - BUG - entryuuid enabled by default causes
e4a41f
 replication issues (#4876)
e4a41f
e4a41f
Bug Description: Due to older servers missing the syntax
e4a41f
plugin this breaks schema replication and causes cascading
e4a41f
errors.
e4a41f
e4a41f
Fix Description: This changes the syntax to be a case
e4a41f
insensitive string, while leaving the plugins in place
e4a41f
for other usage.
e4a41f
e4a41f
fixes: https://github.com/389ds/389-ds-base/issues/4872
e4a41f
e4a41f
Author: William Brown <william@blackhats.net.au>
e4a41f
e4a41f
Review by: @mreynolds389 @progier389
e4a41f
---
e4a41f
 ldap/schema/03entryuuid.ldif | 3 ++-
e4a41f
 1 file changed, 2 insertions(+), 1 deletion(-)
e4a41f
e4a41f
diff --git a/ldap/schema/03entryuuid.ldif b/ldap/schema/03entryuuid.ldif
e4a41f
index cbde981fe..f7a7f40d5 100644
e4a41f
--- a/ldap/schema/03entryuuid.ldif
e4a41f
+++ b/ldap/schema/03entryuuid.ldif
e4a41f
@@ -13,4 +13,5 @@ dn: cn=schema
e4a41f
 #
e4a41f
 # attributes
e4a41f
 #
e4a41f
-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 )
e4a41f
+# 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 )
e4a41f
+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 )
e4a41f
-- 
e4a41f
2.31.1
e4a41f