diff options
author | Stephen Gallagher <sgallagh@redhat.com> | 2009-12-21 13:03:03 -0500 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2009-12-21 14:18:52 -0500 |
commit | 60d37b178ec248764abdc58ff486fc661d0ff77a (patch) | |
tree | 90e27dc32a3451d76470804370ede30d5ccf0d40 /server | |
parent | c153b1cc13ebc5634e0276a90f8637e4c34603a1 (diff) | |
download | sssd-60d37b178ec248764abdc58ff486fc661d0ff77a.tar.gz sssd-60d37b178ec248764abdc58ff486fc661d0ff77a.tar.xz sssd-60d37b178ec248764abdc58ff486fc661d0ff77a.zip |
Allow debug_timestamps setting on a per-domain basis
This was missing from the SSSDConfig API, though it was supported
by the daemon.
Diffstat (limited to 'server')
-rwxr-xr-x | server/config/SSSDConfigTest.py | 2 | ||||
-rw-r--r-- | server/config/etc/sssd.api.conf | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/server/config/SSSDConfigTest.py b/server/config/SSSDConfigTest.py index f893d98f8..1e7934260 100755 --- a/server/config/SSSDConfigTest.py +++ b/server/config/SSSDConfigTest.py @@ -372,6 +372,7 @@ class SSSDConfigTestSSSDDomain(unittest.TestCase): options = domain.list_options() control_list = [ 'debug_level', + 'debug_timestamps', 'min_id', 'max_id', 'timeout', @@ -586,6 +587,7 @@ class SSSDConfigTestSSSDDomain(unittest.TestCase): options = domain.list_options() control_list = [ 'debug_level', + 'debug_timestamps', 'min_id', 'max_id', 'timeout', diff --git a/server/config/etc/sssd.api.conf b/server/config/etc/sssd.api.conf index c8ddae4f0..bdb6aab24 100644 --- a/server/config/etc/sssd.api.conf +++ b/server/config/etc/sssd.api.conf @@ -42,6 +42,7 @@ chpass_provider = str, None [domain] # Options available to all domains debug_level = int, None, 0 +debug_timestamps = bool, None command = str, None min_id = int, None, 1000 max_id = int, None |