diff options
author | Ariel Barria <olivares73@hotmail.com> | 2013-03-27 16:04:06 -0500 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-04-03 13:33:21 +0200 |
commit | 1b171c456ff901ab622e44bcfd213f7de86fd787 (patch) | |
tree | f49fb1ce63ed83e75c658fba34535a81a06553f6 /src/man | |
parent | 274fe6a4f8bcb23e31929430110c0b52e9ce233a (diff) | |
download | sssd-1b171c456ff901ab622e44bcfd213f7de86fd787.tar.gz sssd-1b171c456ff901ab622e44bcfd213f7de86fd787.tar.bz2 sssd-1b171c456ff901ab622e44bcfd213f7de86fd787.zip |
Allow setting krb5_renew_interval with a delimiter
https://fedorahosted.org/sssd/ticket/902
changed the data type the krb5_renew_interval to string.
function krb5_string_to_deltat is used to convert and allow delimiters
Diffstat (limited to 'src/man')
-rw-r--r-- | src/man/sssd-krb5.5.xml | 26 |
1 files changed, 24 insertions, 2 deletions
diff --git a/src/man/sssd-krb5.5.xml b/src/man/sssd-krb5.5.xml index 80b2d54d..00881b8b 100644 --- a/src/man/sssd-krb5.5.xml +++ b/src/man/sssd-krb5.5.xml @@ -351,12 +351,34 @@ </varlistentry> <varlistentry> - <term>krb5_renew_interval (integer)</term> + <term>krb5_renew_interval (string)</term> <listitem> <para> The time in seconds between two checks if the TGT should be renewed. TGTs are renewed if about half - of their lifetime is exceeded. + of their lifetime is exceeded, given as an integer + immediately followed by a time unit: + </para> + <para> + <emphasis>s</emphasis> for seconds + </para> + <para> + <emphasis>m</emphasis> for minutes + </para> + <para> + <emphasis>h</emphasis> for hours + </para> + <para> + <emphasis>d</emphasis> for days. + </para> + <para> + If there is no unit given, <emphasis>s</emphasis> is + assumed. + </para> + <para> + NOTE: It is not possible to mix units. To set + the renewable lifetime to one and a half hours, + use '90m' instead of '1h30m'. </para> <para> If this option is not set or is 0 the automatic |