From aa21600822543a3a07a3d808bc6085d4088fa5e6 Mon Sep 17 00:00:00 2001 From: Alexander Bokovoy Date: Thu, 4 Jun 2015 17:36:32 +0000 Subject: ipa-sidgen: reduce log level to normal if domain SID is not available To support AD trust agents, we need to run sidgen and extdom plugins on every IPA master. Lack of working configuration, thus, is not a failure so reduce log level to normal as sidgen plugin will not be active if domain SID is missing but it can certainly be kept enabled. Part of https://fedorahosted.org/freeipa/ticket/4951 Reviewed-By: Tomas Babej --- daemons/ipa-slapi-plugins/ipa-sidgen/ipa_sidgen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemons/ipa-slapi-plugins/ipa-sidgen/ipa_sidgen.c b/daemons/ipa-slapi-plugins/ipa-sidgen/ipa_sidgen.c index 135c47a39..99e6b850b 100644 --- a/daemons/ipa-slapi-plugins/ipa-sidgen/ipa_sidgen.c +++ b/daemons/ipa-slapi-plugins/ipa-sidgen/ipa_sidgen.c @@ -104,7 +104,7 @@ static int ipa_sidgen_add_post_op(Slapi_PBlock *pb) if (ctx->dom_sid == NULL) { ret = get_dom_sid(ctx->plugin_id, ctx->base_dn, &ctx->dom_sid); if (ret != 0) { - LOG_FATAL("Domain SID not available, nothing to do.\n"); + LOG("Domain SID not available, nothing to do.\n"); ret = 0; goto done; } -- cgit