diff options
author | Michal Zidek <mzidek@redhat.com> | 2014-08-11 15:18:32 +0200 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2014-08-12 16:13:14 +0200 |
commit | d3e70b9afcc1d0a222cd8c5194e530f559915798 (patch) | |
tree | 16a1eefabab490966d400b85e4edc829de1a1983 | |
parent | 573621529bf58cac9da5932adab5957026fae2a4 (diff) | |
download | sssd-d3e70b9afcc1d0a222cd8c5194e530f559915798.tar.gz sssd-d3e70b9afcc1d0a222cd8c5194e530f559915798.tar.xz sssd-d3e70b9afcc1d0a222cd8c5194e530f559915798.zip |
MAN: offline_timeout
Amend the man page to reflect current behaviour.
https://fedorahosted.org/sssd/ticket/2401
Reviewed-by: Dan Lavu <dlavu@redhat.com>
-rw-r--r-- | src/man/sssd.conf.5.xml | 26 |
1 files changed, 22 insertions, 4 deletions
diff --git a/src/man/sssd.conf.5.xml b/src/man/sssd.conf.5.xml index 2eb0b6222..625ac20a2 100644 --- a/src/man/sssd.conf.5.xml +++ b/src/man/sssd.conf.5.xml @@ -406,10 +406,28 @@ <term>offline_timeout (integer)</term> <listitem> <para> - If SSSD is in offline mode, and last attempt to go - online was less than number of seconds specified - in this option ago, new requests for data will not - result in attempt to go online. + When SSSD switches to offline mode the amount of + time before it tries to go back online will + increase based upon the time spent disconnected. + This value is in seconds and calculated by the + following: + </para> + <para> + offline_timeout + random_offset + </para> + <para> + The random offset can increment up to 30 seconds. + After each unsuccessful attempt to go online, + the new interval is recalculated by the following: + </para> + <para> + new_interval = old_interval*2 + random_offset + </para> + <para> + Note that the maximum length of each interval + is currently limited to one hour. If the + calculated length of new_interval is greater + than an hour, it will be forced to one hour. </para> <para> Default: 60 |