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