From 86a2c33bdc84d486039279dd7bf4dbfcc41556c8 Mon Sep 17 00:00:00 2001 From: Michal Zidek Date: Wed, 13 Aug 2014 10:21:35 -0400 Subject: MAN: How much time sssd spends offline Added note to man page about how the time SSSD spends offline is calculated. Reviewed-by: Dan Lavu --- src/man/sssd.8.xml | 45 +++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 41 insertions(+), 4 deletions(-) diff --git a/src/man/sssd.8.xml b/src/man/sssd.8.xml index 0e584cd26..bdf83f189 100644 --- a/src/man/sssd.8.xml +++ b/src/man/sssd.8.xml @@ -189,10 +189,47 @@ NOTES - - If the environment variable SSS_NSS_USE_MEMCACHE is set to "NO", - client applications will not use the fast in memory cache. - + + + Environment variable SSS_NSS_USE_MEMCACHE + + + If the environment variable SSS_NSS_USE_MEMCACHE is set to "NO", + client applications will not use the fast in-memory cache. + + + + + Amount of time SSSD spends in offline mode + + + 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: + + + 60 + random_offset + + + The random offset can increment up to 30 seconds. + After each unsuccessful attempt to go online, + the new interval is recalculated by the following: + + + new_interval = old_interval*2 + random_offset + + + 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. + + + + + -- cgit