summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJakub Hrozek <jhrozek@redhat.com>2011-07-31 12:20:35 +0200
committerStephen Gallagher <sgallagh@redhat.com>2011-08-01 07:32:34 -0400
commitd2d90b7195f58bd20628b1c62d1e1b01bfbb7a2b (patch)
tree5f128a5a2b7978d4224b1cfcc4849aced0a64f09
parenta72e9289fe001c85a17acd667ca31d692fd99605 (diff)
downloadsssd-d2d90b7195f58bd20628b1c62d1e1b01bfbb7a2b.tar.gz
sssd-d2d90b7195f58bd20628b1c62d1e1b01bfbb7a2b.tar.xz
sssd-d2d90b7195f58bd20628b1c62d1e1b01bfbb7a2b.zip
Change the default value of ldap_tls_cacert in IPA provider
https://fedorahosted.org/sssd/ticket/944
-rw-r--r--src/providers/ipa/ipa_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/providers/ipa/ipa_common.c b/src/providers/ipa/ipa_common.c
index 08b051265..7e548009a 100644
--- a/src/providers/ipa/ipa_common.c
+++ b/src/providers/ipa/ipa_common.c
@@ -64,7 +64,7 @@ struct dp_option ipa_def_ldap_opts[] = {
{ "ldap_enumeration_refresh_timeout", DP_OPT_NUMBER, { .number = 300 }, NULL_NUMBER },
{ "ldap_purge_cache_timeout", DP_OPT_NUMBER, { .number = 3600 }, NULL_NUMBER },
{ "entry_cache_timeout", DP_OPT_NUMBER, { .number = 1800 }, NULL_NUMBER },
- { "ldap_tls_cacert", DP_OPT_STRING, NULL_STRING, NULL_STRING },
+ { "ldap_tls_cacert", DP_OPT_STRING, { "/etc/ipa/ca.crt" }, NULL_STRING },
{ "ldap_tls_cacertdir", DP_OPT_STRING, NULL_STRING, NULL_STRING },
{ "ldap_tls_cert", DP_OPT_STRING, NULL_STRING, NULL_STRING },
{ "ldap_tls_key", DP_OPT_STRING, NULL_STRING, NULL_STRING },