Package: autofs
Version: 5.1.6

When slapd is invoked while including /etc/ldap/schema/autofs.schema,
slapd will crash with the following error:

5f359370 /etc/ldap/schema/autofs.schema: line 14 attributetype: 
AttributeType inappropriate matching rule: "caseExactMatch"

The problem is on line 13, which reads:

  EQUALITY caseExactMatch

It should read:

  EQUALITY caseExactIA5Match

Attached is a patch that will make the necessary change to
samples/autofs.schema in the source package.

Thank you for your time,

Michael Peek
diff -ur autofs-5.1.6.orig/samples/autofs.schema autofs-5.1.6/samples/autofs.schema
--- autofs-5.1.6.orig/samples/autofs.schema	2019-10-06 20:02:58.000000000 -0400
+++ autofs-5.1.6/samples/autofs.schema	2020-08-19 10:51:12.329933362 -0400
@@ -10,7 +10,7 @@
 
 attributetype ( 1.3.6.1.4.1.2312.4.1.2 NAME 'automountInformation'
 	DESC 'Information used by the autofs automounter'
-	EQUALITY caseExactMatch
+	EQUALITY caseExactIA5Match
 	SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE )
 
 objectclass ( 1.3.6.1.4.1.2312.4.2.3 NAME 'automount' SUP top STRUCTURAL

Reply via email to