openldap に schac スキーマを追加するときに発生する「予期しないトークン」エラーを解決する方法

openldap に schac スキーマを追加するときに発生する「予期しないトークン」エラーを解決する方法

提供された LDIF ファイルを使用して、schac スキーマを OpenLDAP インストールに追加しようとしていますが、「予期しないトークン」エラーで失敗します。

root [2533] /etc/ldap/schema# ldapadd -Y EXTERNAL -H ldapi:/// -f schac-schema-1.5.ldif
SASL/EXTERNAL authentication started
SASL username: gidNumber=0+uidNumber=0,cn=peercred,cn=external,cn=auth
SASL SSF: 0
adding new entry "cn=schac,cn=schema,cn=config"
ldap_add: Other (e.g., implementation specific) error (80)
        additional info: olcAttributeTypes: Unexpected token before DESC 'RFC 3066 code for prefered language of communication'EQUALITY caseExactMatchSINGLE-VALUESYNTAX 1.3.6.1.4.1.1466.115.121.1.15 )

以下は LDIF ファイルの先頭です。最初の olcAttributeTypes 宣言でエラーが発生します。

dn: cn=schac,cn=schema,cn=config
objectClass: olcSchemaConfig
cn: schac
olcObjectIdentifier: TERENA 1.3.6.1.4.1.25178
olcObjectIdentifier: schac TERENA:1
olcObjectIdentifier: schacExperimental schac:0
olcObjectIdentifier: schacObjectClass schac:1
olcObjectIdentifier: schacAttributeType schac:2
olcObjectIdentifier: schacExpObjClass schacExperimental:1
olcObjectIdentifier: schacExpAttr schacExperimental:2
olcAttributeTypes: ( schacAttributeType:1
 NAME 'schacMotherTongue'
 DESC 'RFC 3066 code for prefered language of communication'
 EQUALITY caseExactMatch
 SINGLE-VALUE
 SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 )
olcAttributeTypes: ( schacAttributeType:2
 NAME 'schacGender'
 DESC 'Representation of human sex (see ISO 5218)'
 EQUALITY integerMatch
 SINGLE-VALUE
 SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 )
.... etc...

このスキーマには大きなユーザー ベースがあるため、不正な形式になっているとは驚きです。そのため、schac スキーマと他の必須スキーマの間には何らかの依存関係があるのではないかと推測していますが、これは推測にすぎません。

Debian buster 上のこの OpenLDAP 2.4.47 インストールには、すでに 7 つの他のスキーマがあります。

どのような助けでも歓迎します。

関連情報