From 131684b9107a3fc07906013d16b35975531f2864 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Tue, 26 Apr 2016 11:04:36 -0400 Subject: DEBUG: Add `debug` alias for debug_level MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Our users constantly make the mistake of typing `debug = 9` in the sssd.conf instead of `debug_level = 9` as would be correct. This happens frequently-enough that we should just alias it rather than continue to have people make mistakes. Resolves: https://fedorahosted.org/sssd/ticket/2999 Reviewed-by: Pavel Březina Reviewed-by: Petr Cech --- src/config/etc/sssd.api.conf | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/config/etc/sssd.api.conf') diff --git a/src/config/etc/sssd.api.conf b/src/config/etc/sssd.api.conf index fef55364d..91146593d 100644 --- a/src/config/etc/sssd.api.conf +++ b/src/config/etc/sssd.api.conf @@ -3,6 +3,7 @@ [service] # Options available to all services +debug = int, None, false debug_level = int, None, false debug_timestamps = bool, None, false debug_microseconds = bool, None, false @@ -108,6 +109,7 @@ subdomains_provider = str, None, false [domain] # Options available to all domains description = str, None, false +debug = int, None, false debug_level = int, None, false debug_timestamps = bool, None, false command = str, None, false -- cgit