diff options
author | Pavel Březina <pbrezina@redhat.com> | 2012-04-23 14:40:51 +0200 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2012-06-29 11:37:16 -0400 |
commit | da9fd6373b94a49b748542ab568997b9e2421972 (patch) | |
tree | 7893f685d129bdb3d7f0f220be2296a002d90b61 /src/config | |
parent | 751a7930d5af7c1a3c36936e3c5b9205189c6b92 (diff) | |
download | sssd-da9fd6373b94a49b748542ab568997b9e2421972.tar.gz sssd-da9fd6373b94a49b748542ab568997b9e2421972.tar.bz2 sssd-da9fd6373b94a49b748542ab568997b9e2421972.zip |
confdb: add entry_cache_sudo_timeout option
Diffstat (limited to 'src/config')
-rw-r--r-- | src/config/SSSDConfig/__init__.py.in | 1 | ||||
-rwxr-xr-x | src/config/SSSDConfigTest.py | 2 | ||||
-rw-r--r-- | src/config/etc/sssd.api.conf | 1 |
3 files changed, 4 insertions, 0 deletions
diff --git a/src/config/SSSDConfig/__init__.py.in b/src/config/SSSDConfig/__init__.py.in index 23784fdc..9d7084fc 100644 --- a/src/config/SSSDConfig/__init__.py.in +++ b/src/config/SSSDConfig/__init__.py.in @@ -118,6 +118,7 @@ option_strings = { 'entry_cache_netgroup_timeout' : _('Entry cache timeout length (seconds)'), 'entry_cache_service_timeout' : _('Entry cache timeout length (seconds)'), 'entry_cache_autofs_timeout' : _('Entry cache timeout length (seconds)'), + 'entry_cache_sudo_timeout' : _('Entry cache timeout length (seconds)'), # [provider/ipa] 'ipa_domain' : _('IPA domain'), diff --git a/src/config/SSSDConfigTest.py b/src/config/SSSDConfigTest.py index ef696e98..c5bc8bc7 100755 --- a/src/config/SSSDConfigTest.py +++ b/src/config/SSSDConfigTest.py @@ -487,6 +487,7 @@ class SSSDConfigTestSSSDDomain(unittest.TestCase): 'entry_cache_netgroup_timeout', 'entry_cache_service_timeout', 'entry_cache_autofs_timeout', + 'entry_cache_sudo_timeout', 'lookup_family_order', 'account_cache_expiration', 'dns_resolver_timeout', @@ -817,6 +818,7 @@ class SSSDConfigTestSSSDDomain(unittest.TestCase): 'entry_cache_netgroup_timeout', 'entry_cache_service_timeout', 'entry_cache_autofs_timeout', + 'entry_cache_sudo_timeout', 'account_cache_expiration', 'lookup_family_order', 'dns_resolver_timeout', diff --git a/src/config/etc/sssd.api.conf b/src/config/etc/sssd.api.conf index c3d6fa81..2cf5713f 100644 --- a/src/config/etc/sssd.api.conf +++ b/src/config/etc/sssd.api.conf @@ -109,6 +109,7 @@ entry_cache_group_timeout = int, None, false entry_cache_netgroup_timeout = int, None, false entry_cache_service_timeout = int, None, false entry_cache_autofs_timeout = int, None, false +entry_cache_sudo_timeout = int, None, false # Special providers [provider/permit] |