diff --git a/ipalib/plugins/baseldap.py b/ipalib/plugins/baseldap.py index 61fedd98a..315deb09d 100644 --- a/ipalib/plugins/baseldap.py +++ b/ipalib/plugins/baseldap.py @@ -283,12 +283,13 @@ class LDAPObject(Object): _attr_options = ( Str('addattr*', validate_add_attribute, cli_name='addattr', - doc=_('Add an attribute/value pair. Format is attr=value'), + doc=_('Add an attribute/value pair. Format is attr=value. The attribute must be part of the schema.'), exclude='webui', ), Str('setattr*', validate_set_attribute, cli_name='setattr', - doc=_('Set an attribute to an name/value pair. Format is attr=value'), + doc=_("""Set an attribute to an name/value pair. Format is attr=value. +For multivalued attributes, the command replaces the values already present."""), exclude='webui', ), )