summaryrefslogtreecommitdiffstats
path: root/server/config
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2009-10-28 09:29:54 -0400
committerStephen Gallagher <sgallagh@redhat.com>2009-10-28 16:00:59 -0400
commit6ff508c02836dc62c3a5218c498f24964aed4c7d (patch)
treea745706d5479903b74fb31c1f0c847948a14083b /server/config
parentaa5a562635eba7fce18f52d177d002b85740cb00 (diff)
downloadsssd-6ff508c02836dc62c3a5218c498f24964aed4c7d.tar.gz
sssd-6ff508c02836dc62c3a5218c498f24964aed4c7d.tar.xz
sssd-6ff508c02836dc62c3a5218c498f24964aed4c7d.zip
Fix sssd.api.conf with correct entry_cache_timeout
Changeset 3a21103f61bf9b60256cc2d0da54b757b634319f moved the wrong option to the domain list, and also didn't update the unit tests.
Diffstat (limited to 'server/config')
-rw-r--r--server/config/SSSDConfigTest.py2
-rw-r--r--server/config/etc/sssd.api.conf5
2 files changed, 5 insertions, 2 deletions
diff --git a/server/config/SSSDConfigTest.py b/server/config/SSSDConfigTest.py
index 2a00a99f2..0baa9122c 100644
--- a/server/config/SSSDConfigTest.py
+++ b/server/config/SSSDConfigTest.py
@@ -419,6 +419,7 @@ class SSSDConfigTestSSSDDomain(unittest.TestCase):
'cache_credentials',
'store_legacy_passwords',
'use_fully_qualified_names',
+ 'entry_cache_timeout',
'id_provider',
'auth_provider',
'access_provider',
@@ -638,6 +639,7 @@ class SSSDConfigTestSSSDDomain(unittest.TestCase):
'cache_credentials',
'store_legacy_passwords',
'use_fully_qualified_names',
+ 'entry_cache_timeout',
'id_provider',
'auth_provider',
'access_provider',
diff --git a/server/config/etc/sssd.api.conf b/server/config/etc/sssd.api.conf
index 0450d981f..0c41fa711 100644
--- a/server/config/etc/sssd.api.conf
+++ b/server/config/etc/sssd.api.conf
@@ -21,7 +21,7 @@ full_name_format = str, None
[nss]
# Name service
-entry_cache_timeout = int, None
+enum_cache_timeout = int, None
entry_cache_no_wait_timeout = int, None
entry_negative_timeout = int, None
filter_users = list, str, root
@@ -51,4 +51,5 @@ enumerate = bool, None, true
cache_credentials = bool, None, false
store_legacy_passwords = bool, None, false
use_fully_qualified_names = bool, None, false
-enum_cache_timeout = int, None
+entry_cache_timeout = int, None
+