I'm trying to add new attributes to FreeIPA, I added the custom attribute and object class to the LDAP using 'ldapmodify',
#color.ldif
dn: cn=schema
changetype: modify
add: attributeTypes
attributeTypes: ( 2.25.28639311321113238241701611583088740684.14.2.2
NAME 'favoriteColorName'
EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
X-ORIGIN 'Extending FreeIPA' )
dn: cn=schema
changetype: modify
add: objectclasses
objectclasses: ( 2.25.28639311321113238241701611583088740684.14.2.1
NAME 'customPerson' SUP person
STRUCTURAL
MAY ( favoriteColorName )
X-ORIGIN 'Extending FreeIPA' )
then restarted the server and used
ipa config-mod --addattr=ipaUserObjectClasses=customPerson
as instructed in the Extending the FreeIPA Server and it went all fine, finally I add the plugin to the freeIPA
#color.py
from ipalib.plugins import user
from ipalib.parameters import Str
from ipalib import _
user.user.takes_params = user.user.takes_params + (
Str('favoritecolorname?',
cli_name='color',
label=_('Favorite color'),
),
)
user.user.default_attributes.append('favoritecolorname')
when I try to run the command:
ipa user-mod admin --color=red
I get the error:
ipa: ERROR: attribute "favoriteColorName" not allowed