summaryrefslogtreecommitdiffstats
path: root/daemons
diff options
context:
space:
mode:
authorAlexander Bokovoy <abokovoy@redhat.com>2015-06-04 17:36:32 +0000
committerTomas Babej <tbabej@redhat.com>2015-07-08 01:56:52 +0200
commitaa21600822543a3a07a3d808bc6085d4088fa5e6 (patch)
tree35d1d0a230c5506b978f0624ebee18b83d6a0426 /daemons
parent47e1de760413e5354f704fc808d960490d80338c (diff)
downloadfreeipa-aa21600822543a3a07a3d808bc6085d4088fa5e6.tar.gz
freeipa-aa21600822543a3a07a3d808bc6085d4088fa5e6.tar.xz
freeipa-aa21600822543a3a07a3d808bc6085d4088fa5e6.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 Reviewed-By: Tomas Babej <tbabej@redhat.com>
Diffstat (limited to 'daemons')
-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;
}