From 4b6b710ba6ce75ffcb9ced43acee0d55adb6163c Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Tue, 24 Aug 2010 23:40:32 -0400 Subject: Update command documentation based on feedback from docs team. ticket #158 --- ipalib/plugins/krbtpolicy.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'ipalib/plugins/krbtpolicy.py') diff --git a/ipalib/plugins/krbtpolicy.py b/ipalib/plugins/krbtpolicy.py index 2c797fd1..5d773d20 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 -- cgit