[Date Prev][Date Next] [Chronological] [Thread] [Top]

Re: line 144: AttributeType not found: "audio"



Fabrice Cartron wrote:
> 
> In order to use the inetOrgPerson Class my slapd.conf
> include this entries:
> 
> include         /usr/local/etc/openldap/schema/core.schema
> include         /usr/local/etc/openldap/schema/inetorgperson.schema
> include        /usr/local/etc/openldap/schema/cosine.schema
> 
>  But when i start my ldap server i have this message on the
> line commande:
> line 144: AttributeType not found: "audio"

grep audio /usr/local/openldap2/etc/openldap/schema/*.schema shows
that attribute type audio is defined in cosine.schema. Therefore
changing the include order should do the trick:

include        /usr/local/etc/openldap/schema/core.schema
include        /usr/local/etc/openldap/schema/cosine.schema
include        /usr/local/etc/openldap/schema/inetorgperson.schema

Ciao, Michael.