summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Bokovoy <abokovoy@redhat.com>2015-06-04 17:36:32 +0000
committerAlexander Bokovoy <abokovoy@redhat.com>2015-07-07 11:05:48 +0300
commitc6b834931193b66063c982078dac7bfaeacb950a (patch)
tree6824d286a0ffb30ec9c1900f99d366183e56e145
parent4a856d8ff597ec516cc1eb05f06e062bb4ecca5b (diff)
downloadfreeipa-c6b834931193b66063c982078dac7bfaeacb950a.tar.gz
freeipa-c6b834931193b66063c982078dac7bfaeacb950a.tar.xz
freeipa-c6b834931193b66063c982078dac7bfaeacb950a.zip
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
-rw-r--r--daemons/ipa-slapi-plugins/ipa-sidgen/ipa_sidgen.c2
1 files changed, 1 insertions, 1 deletions
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;
}