summaryrefslogtreecommitdiffstats
path: root/ipalib/plugins/radiusproxy.py
diff options
context:
space:
mode:
authorPetr Viktorin <pviktori@redhat.com>2014-06-09 20:10:19 +0200
committerMartin Kosek <mkosek@redhat.com>2014-06-10 13:19:32 +0200
commite3b20b9d03f08b889474ef94aef11b31723fdf53 (patch)
tree20c9d187043c8f03eff55e86e1e563ee903d72f3 /ipalib/plugins/radiusproxy.py
parentb0a61ab9530d96a56ff0b10e66a742c18ca90c4a (diff)
downloadfreeipa-e3b20b9d03f08b889474ef94aef11b31723fdf53.tar.gz
freeipa-e3b20b9d03f08b889474ef94aef11b31723fdf53.tar.xz
freeipa-e3b20b9d03f08b889474ef94aef11b31723fdf53.zip
Split long docstrings that were recently modified
When the strings are changed again, translators will only need to re-translate the modified parts. See: https://fedorahosted.org/freeipa/ticket/3587 Reviewed-By: Martin Kosek <mkosek@redhat.com>
Diffstat (limited to 'ipalib/plugins/radiusproxy.py')
-rw-r--r--ipalib/plugins/radiusproxy.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/ipalib/plugins/radiusproxy.py b/ipalib/plugins/radiusproxy.py
index 4d143c4bf..5d8f3a727 100644
--- a/ipalib/plugins/radiusproxy.py
+++ b/ipalib/plugins/radiusproxy.py
@@ -26,27 +26,27 @@ import re
__doc__ = _("""
RADIUS Proxy Servers
-
+""") + _("""
Manage RADIUS Proxy Servers.
-
+""") + _("""
IPA supports the use of an external RADIUS proxy server for krb5 OTP
authentications. This permits a great deal of flexibility when
integrating with third-party authentication services.
-
+""") + _("""
EXAMPLES:
-
+""") + _("""
Add a new server:
ipa radiusproxy-add MyRADIUS --server=radius.example.com:1812
-
+""") + _("""
Find all servers whose entries include the string "example.com":
ipa radiusproxy-find example.com
-
+""") + _("""
Examine the configuration:
ipa radiusproxy-show MyRADIUS
-
+""") + _("""
Change the secret:
ipa radiusproxy-mod MyRADIUS --secret
-
+""") + _("""
Delete a configuration:
ipa radiusproxy-del MyRADIUS
""")