From 0e5879c0e3f83b0bbaff79d9c97f672055b61c4f Mon Sep 17 00:00:00 2001 From: Jan Zeleny Date: Wed, 30 Mar 2011 08:38:41 -0400 Subject: Configuration parsing updates These changes are all related to following ticket: https://fedorahosted.org/sssd/ticket/763 Changes in SSSDConfig.py merge old and new domain record instead of just deleting the old and inserting the new one. The old approach let to loss of some information like comments and blank lines in the config file. Changes in API config were performed so our Python scripts (like sss_obfuscate) don't add extra config options to the config file. --- src/config/etc/sssd.api.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (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 e9159716..975cd2d1 100644 --- a/src/config/etc/sssd.api.conf +++ b/src/config/etc/sssd.api.conf @@ -40,7 +40,7 @@ pam_pwd_expiration_warning = int, None, false [provider] #Available provider types id_provider = str, None, true -auth_provider = str, None, true +auth_provider = str, None, false access_provider = str, None, false chpass_provider = str, None, false @@ -53,7 +53,7 @@ min_id = int, None, false max_id = int, None, false timeout = int, None, false enumerate = bool, None, false -cache_credentials = bool, None, true, false +cache_credentials = bool, None, false store_legacy_passwords = bool, None, false use_fully_qualified_names = bool, None, false entry_cache_timeout = int, None, false -- cgit