From cef30893ecc7aa7b6cdcef0092b5ba4245af20a2 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Mon, 3 May 2010 15:15:43 -0400 Subject: client installation fixes: nscd, sssd min version, bogus join error - Don't run nscd if using sssd, the caching of nscd conflicts with sssd - Set the minimum version of sssd to 1.1.1 to pick up needed hbac fixes - only try to read the file configuration if the server isn't passed in --- ipa-client/ipa-join.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipa-client/ipa-join.c') diff --git a/ipa-client/ipa-join.c b/ipa-client/ipa-join.c index 094bc948e..16d8604e7 100644 --- a/ipa-client/ipa-join.c +++ b/ipa-client/ipa-join.c @@ -596,10 +596,10 @@ join(const char *server, const char *hostname, const char *bindpw, const char *k krb5_principal uprinc = NULL; krb5_error_code krberr; - conf_data = read_config_file(IPA_CONFIG); if (server) { ipaserver = strdup(server); } else if ((ipaserver = getIPAserver(conf_data)) == NULL) { + conf_data = read_config_file(IPA_CONFIG); fprintf(stderr, "Unable to determine IPA server from %s\n", IPA_CONFIG); exit(1); } -- cgit