diff options
author | Stephen Gallagher <sgallagh@redhat.com> | 2011-01-18 12:01:05 -0500 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2011-01-19 09:53:21 -0500 |
commit | 80842de291288f72c9fab70a47adf60c7d0712b4 (patch) | |
tree | 87204e3711f1eedae5b28b6acbf976e6e95f71c5 /src | |
parent | 0c3bf8c92befdeb16c005cedc173422e1e9b71d3 (diff) | |
download | sssd-80842de291288f72c9fab70a47adf60c7d0712b4.tar.gz sssd-80842de291288f72c9fab70a47adf60c7d0712b4.tar.xz sssd-80842de291288f72c9fab70a47adf60c7d0712b4.zip |
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)
Diffstat (limited to 'src')
-rw-r--r-- | src/examples/sssd.conf | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/src/examples/sssd.conf b/src/examples/sssd.conf index eaf70b88c..cc14bc557 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. |