Commit 06b54f16 authored by Côme Chilliet's avatar Côme Chilliet
Browse files

:ambulance: fix(schemas) Add SUBSTR matching rules to fields storing DNs

issue #5811
Showing with 11 additions and 4 deletions
+11 -4
attributetype ( 2.16.840.1.38414.1.203.4.1
NAME 'dhcpPrimaryDN'
EQUALITY distinguishedNameMatch
SUBSTR caseIgnoreSubstringsMatch
DESC 'The DN of the dhcpServer which is the primary server for the configuration.'
SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE )
attributetype ( 2.16.840.1.38414.1.203.4.2
NAME 'dhcpSecondaryDN'
EQUALITY distinguishedNameMatch
SUBSTR caseIgnoreSubstringsMatch
DESC 'The DN of dhcpServer(s) which provide backup service for the configuration.'
SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 )
......@@ -109,6 +111,7 @@ attributetype ( 2.16.840.1.38414.1.203.4.18
attributetype ( 2.16.840.1.38414.1.203.4.19
NAME 'dhcpServiceDN'
EQUALITY distinguishedNameMatch
SUBSTR caseIgnoreSubstringsMatch
DESC 'The DN of dhcpService object(s)which contain the configuration information. Each dhcpServer object has this attribute identifying the DHCP configuration(s) that the server is associated with.'
SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 )
......
......@@ -5,7 +5,8 @@
# Attributes
attributetype ( 1.3.6.1.4.1.38414.49.1.1 NAME 'fdEjbcaCertDN'
DESC 'FusionDirectory - Certificate dn'
EQUALITY caseExactIA5Match
EQUALITY caseIgnoreIA5Match
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.26)
# Objectclasses
......
......@@ -26,13 +26,15 @@ attributetype ( 1.3.6.1.4.1.38414.20.10.3 NAME 'fdOpsiServerPassword'
attributetype ( 1.3.6.1.4.1.38414.20.11.1 NAME 'fdOpsiServerDn'
DESC 'FusionDirectory - OPSI server DN'
EQUALITY caseExactIA5Match
EQUALITY caseIgnoreIA5Match
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.26
SINGLE-VALUE )
attributetype ( 1.3.6.1.4.1.38414.20.11.2 NAME 'fdOpsiProfileDn'
DESC 'FusionDirectory - OPSI Profile DN'
EQUALITY caseExactIA5Match
EQUALITY caseIgnoreIA5Match
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.26
SINGLE-VALUE )
......@@ -44,7 +46,8 @@ attributetype ( 1.3.6.1.4.1.38414.20.12.1 NAME 'fdOpsiNetbootProduct'
attributetype ( 1.3.6.1.4.1.38414.20.12.2 NAME 'fdOpsiSoftwareList'
DESC 'FusionDirectory - OPSI software list DN'
EQUALITY caseExactIA5Match
EQUALITY caseIgnoreIA5Match
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 )
attributetype ( 1.3.6.1.4.1.38414.20.13.1 NAME 'fdOpsiProductProperty'
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment