summaryrefslogtreecommitdiffstats
path: root/ipalib/plugins/krbtpolicy.py
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2010-08-24 23:40:32 -0400
committerRob Crittenden <rcritten@redhat.com>2010-08-27 13:31:04 -0400
commit4b6b710ba6ce75ffcb9ced43acee0d55adb6163c (patch)
tree021fc409342115f1a5cbc1978ee5f67069934c4f /ipalib/plugins/krbtpolicy.py
parentea76d8c59af338f6a79ec87d7a931d2c8643e747 (diff)
downloadfreeipa-4b6b710ba6ce75ffcb9ced43acee0d55adb6163c.tar.gz
freeipa-4b6b710ba6ce75ffcb9ced43acee0d55adb6163c.tar.xz
freeipa-4b6b710ba6ce75ffcb9ced43acee0d55adb6163c.zip
Update command documentation based on feedback from docs team.
ticket #158
Diffstat (limited to 'ipalib/plugins/krbtpolicy.py')
-rw-r--r--ipalib/plugins/krbtpolicy.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/ipalib/plugins/krbtpolicy.py b/ipalib/plugins/krbtpolicy.py
index 2c797fd13..5d773d205 100644
--- a/ipalib/plugins/krbtpolicy.py
+++ b/ipalib/plugins/krbtpolicy.py
@@ -19,13 +19,13 @@
"""
Kerberos ticket policy
-There is a single kerberos ticket policy. This policy defines the
-maximum ticket lifetime (maximum life of a ticket) and maximum renewal
-age, the period during which the ticket is renewable.
+There is a single Kerberos ticket policy. This policy defines the
+maximum ticket lifetime and the maximum renewal age, the period during
+which the ticket is renewable.
EXAMPLES:
- Display the current policy:
+ Display the current Kerberos ticket policy:
ipa krbtpolicy-show
Reset the policy to the default:
@@ -85,7 +85,7 @@ api.register(krbtpolicy)
class krbtpolicy_mod(LDAPUpdate):
"""
- Modify kerberos ticket policy.
+ Modify Kerberos ticket policy.
"""
def pre_callback(self, ldap, dn, entry_attrs, attrs_list, *keys, **options):
# disable all flag
@@ -99,7 +99,7 @@ api.register(krbtpolicy_mod)
class krbtpolicy_show(LDAPRetrieve):
"""
- Display kerberos ticket policy.
+ Display the current Kerberos ticket policy.
"""
def pre_callback(self, ldap, dn, attrs_list, *keys, **options):
# disable all flag
@@ -123,7 +123,7 @@ api.register(krbtpolicy_show)
class krbtpolicy_reset(LDAPQuery):
"""
- Reset kerberos ticket policy to default.
+ Reset Kerberos ticket policy to the default values.
"""
has_output = output.standard_entry