From 80842de291288f72c9fab70a47adf60c7d0712b4 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Tue, 18 Jan 2011 12:01:05 -0500 Subject: Fix incorrect example file The example sssd.conf still had entry_cache_timeout listed in the [nss] section, and did not have correct values for entry_cache_nowait_percentage (it was listed as entry_cache_nowait_timeout and gave a value in seconds) --- src/examples/sssd.conf | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) (limited to 'src/examples') diff --git a/src/examples/sssd.conf b/src/examples/sssd.conf index eaf70b88..cc14bc55 100644 --- a/src/examples/sssd.conf +++ b/src/examples/sssd.conf @@ -23,14 +23,12 @@ filter_groups = root filter_users = root reconnection_retries = 3 -# The entry_cache_timeout indicates the number of seconds to retain an -# entry in cache before it is considered stale and must block to refresh. -# The entry_cache_nowait_timeout indicates the number of seconds to -# wait before updating the cache out-of-band. (NSS requests will still -# be returned from cache until the full entry_cache_timeout). Setting this -# value to 0 turns this feature off (default). -; entry_cache_timeout = 600 -; entry_cache_nowait_timeout = 300 +# The entry_cache_nowait_percentage indicates the percentage of the +# entry_cache_timeout to wait before updating the cache out-of-band. +# (NSS requests will still be returned from cache until the full +# entry_cache_timeout). Setting this value to 0 turns this feature +# off (default). +; entry_cache_nowait_percentage = 300 [pam] reconnection_retries = 3 @@ -68,6 +66,7 @@ reconnection_retries = 3 ; ldap_tls_reqcert = demand ; cache_credentials = true ; enumerate = False +; entry_cache_timeout = 5400 # Example LDAP domain where the LDAP server is an Active Directory server. -- cgit