From e2d96566aeb881bd89e5c9236d663f6a9a88019a Mon Sep 17 00:00:00 2001 From: Jakub Hrozek Date: Mon, 25 Jan 2016 16:11:59 +0100 Subject: IPA: Add interface to call into IPA provider from LDAP provider https://fedorahosted.org/sssd/ticket/2522 Adds a pluggable interface that is able to resolve the IPA group's external members. At the moment, the request calls the full be_ interface to make sure all corner cases like id-views are handled internally. Reviewed-by: Sumit Bose --- src/providers/ipa/ipa_id.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/providers/ipa/ipa_id.c') diff --git a/src/providers/ipa/ipa_id.c b/src/providers/ipa/ipa_id.c index 27cc2548d..29e22982c 100644 --- a/src/providers/ipa/ipa_id.c +++ b/src/providers/ipa/ipa_id.c @@ -405,7 +405,10 @@ static int ipa_initgr_get_overrides_step(struct tevent_req *req) /* This should never happen, the search filter used to get the list * of groups includes "uuid=*" */ - DEBUG(SSSDBG_OP_FAILURE, "A group with no UUID, error!\n"); + DEBUG(SSSDBG_OP_FAILURE, + "The group %s has no UUID attribute %s, error!\n", + ldb_dn_get_linearized(state->groups[state->group_idx]->dn), + state->groups_id_attr); return EINVAL; } -- cgit