summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSumit Bose <sbose@redhat.com>2012-09-06 09:48:07 +0200
committerMartin Kosek <mkosek@redhat.com>2012-09-07 16:52:39 +0200
commitdc71dd1a126d951eb731abb78e0dc1670ea202e3 (patch)
tree65566c3cc3eecc84b86227a9d4c9ed7f6fef1524
parentf3de42f29418f2b103dce6af0abcba715d6d689a (diff)
downloadfreeipa.git-dc71dd1a126d951eb731abb78e0dc1670ea202e3.tar.gz
freeipa.git-dc71dd1a126d951eb731abb78e0dc1670ea202e3.tar.xz
freeipa.git-dc71dd1a126d951eb731abb78e0dc1670ea202e3.zip
Trust CLI: mark trust-mod for future use
Fixes: https://fedorahosted.org/freeipa/ticket/2968
-rw-r--r--ipalib/plugins/trust.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/ipalib/plugins/trust.py b/ipalib/plugins/trust.py
index 48aa4027..074560dc 100644
--- a/ipalib/plugins/trust.py
+++ b/ipalib/plugins/trust.py
@@ -296,7 +296,12 @@ class trust_del(LDAPDelete):
return result['result']['dn']
class trust_mod(LDAPUpdate):
- __doc__ = _('Modify a trust.')
+ __doc__ = _("""
+ Modify a trust (for future use).
+
+ Currently only the default option to modify the LDAP attributes are
+ available. More specific options will be added in coming releases.
+ """)
msg_summary = _('Modified trust "%(value)s"')