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

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