summaryrefslogtreecommitdiffstats
path: root/ipalib/plugins/baseldap.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipalib/plugins/baseldap.py')
-rw-r--r--ipalib/plugins/baseldap.py5
1 files changed, 3 insertions, 2 deletions
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',
),
)