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

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