summaryrefslogtreecommitdiffstats
path: root/src/responder/sudo/sudosrv.c
diff options
context:
space:
mode:
authorSumit Bose <sbose@redhat.com>2013-05-31 10:52:05 +0200
committerJakub Hrozek <jhrozek@redhat.com>2013-06-04 17:24:13 +0200
commit909a86af4eb99f5d311d7136cab78dca535ae304 (patch)
treeecf8477033ec37ab8de6b415fc06eac1c6fb1240 /src/responder/sudo/sudosrv.c
parent06dad7ed041e90b106475e06d4eb542548d560ed (diff)
downloadsssd-909a86af4eb99f5d311d7136cab78dca535ae304.tar.gz
sssd-909a86af4eb99f5d311d7136cab78dca535ae304.tar.xz
sssd-909a86af4eb99f5d311d7136cab78dca535ae304.zip
Lookup domains at startup
To make sure that e.g. the short/NetBIOS domain name is available this patch make sure that the responders send a get_domains request to their backends at startup the collect the domain information or read it from the cache if the backend is offline. For completeness I added this to all responders even if they do not need the information at the moment. Fixes https://fedorahosted.org/sssd/ticket/1951
Diffstat (limited to 'src/responder/sudo/sudosrv.c')
-rw-r--r--src/responder/sudo/sudosrv.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/responder/sudo/sudosrv.c b/src/responder/sudo/sudosrv.c
index a6344a99a..e6bd997ec 100644
--- a/src/responder/sudo/sudosrv.c
+++ b/src/responder/sudo/sudosrv.c
@@ -148,6 +148,12 @@ int sudo_process_init(TALLOC_CTX *mem_ctx,
goto fail;
}
+ ret = schedule_get_domains_task(rctx, rctx->ev, rctx);
+ if (ret != EOK) {
+ DEBUG(SSSDBG_FATAL_FAILURE, ("schedule_get_domains_tasks failed.\n"));
+ goto fail;
+ }
+
DEBUG(SSSDBG_TRACE_FUNC, ("SUDO Initialization complete\n"));
return EOK;