diff options
author | Jan Zeleny <jzeleny@redhat.com> | 2011-02-17 03:55:14 -0500 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2011-02-17 16:05:14 -0500 |
commit | 2d97f4b335ce2f2f1d62194ef614af3ace77a57e (patch) | |
tree | 35a319d5014a20ba26400f2d64aed2ed41e12ef2 /ipalib | |
parent | 27785b679427758ec4c111583b055a64b077c23f (diff) | |
download | freeipa-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.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ipalib/plugins/baseldap.py b/ipalib/plugins/baseldap.py index f403990ff..2d25219da 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.'), ), ) |