summaryrefslogtreecommitdiffstats
path: root/ipalib
diff options
context:
space:
mode:
authorJan Zeleny <jzeleny@redhat.com>2011-02-17 03:55:14 -0500
committerRob Crittenden <rcritten@redhat.com>2011-02-17 16:05:14 -0500
commit2d97f4b335ce2f2f1d62194ef614af3ace77a57e (patch)
tree35a319d5014a20ba26400f2d64aed2ed41e12ef2 /ipalib
parent27785b679427758ec4c111583b055a64b077c23f (diff)
downloadfreeipa-2d97f4b335ce2f2f1d62194ef614af3ace77a57e.tar.gz
freeipa-2d97f4b335ce2f2f1d62194ef614af3ace77a57e.tar.xz
freeipa-2d97f4b335ce2f2f1d62194ef614af3ace77a57e.zip
Document the --rights output format
https://fedorahosted.org/freeipa/ticket/563 https://fedorahosted.org/freeipa/ticket/588
Diffstat (limited to 'ipalib')
-rw-r--r--ipalib/plugins/baseldap.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipalib/plugins/baseldap.py b/ipalib/plugins/baseldap.py
index f403990f..2d25219d 100644
--- a/ipalib/plugins/baseldap.py
+++ b/ipalib/plugins/baseldap.py
@@ -666,7 +666,7 @@ class LDAPRetrieve(LDAPQuery):
takes_options = (
Flag('rights',
label=_('Rights'),
- doc=_('Display the access rights to modify this entry (requires --all)'),
+ doc=_('Display the access rights of this entry (requires --all). See ipa man page for details.'),
),
)
@@ -732,7 +732,7 @@ class LDAPUpdate(LDAPQuery, crud.Update):
takes_options = _attr_options + (
Flag('rights',
label=_('Rights'),
- doc=_('Display the access rights to modify this entry (requires --all)'),
+ doc=_('Display the access rights of this entry (requires --all). See ipa man page for details.'),
),
)