URL: https://github.com/SSSD/sssd/pull/187
Title: #187: Add support to lookup for users/groups in subdomains just by the 
user shortname

fidencio commented:
"""
New patchset pushed, the fixup changes look like:
```
diff --git a/src/man/sssd.conf.5.xml b/src/man/sssd.conf.5.xml
index b7e6224..bb8a942 100644
--- a/src/man/sssd.conf.5.xml
+++ b/src/man/sssd.conf.5.xml
@@ -550,9 +550,12 @@
                                 representing the lookup order that will be
                                 followed.
                                 The list doesn't have to include all possible
-                                domains as the missing domains will be looked 
up
-                                based on the order they're presented in the
+                                domains as the missing domains will be looked
+                                up based on the order they're presented in the
                                 <quote>domains</quote> configuration option.
+                                The subdomains which are not listed as part of
+                                <quote>lookup_order</quote> will be looked up
+                                in a random order for each parent domain.
                             </para>
                             <para>
                                 Default: Not set
diff --git a/src/responder/common/responder_common.c 
b/src/responder/common/responder_common.c
index 51f9b0f..f70fcd0 100644
--- a/src/responder/common/responder_common.c
+++ b/src/responder/common/responder_common.c
@@ -1198,7 +1198,7 @@ int sss_process_init(TALLOC_CTX *mem_ctx,
                                     CONFDB_MONITOR_CONF_ENTRY,
                                     CONFDB_MONITOR_LOOKUP_ORDER,
                                     &rctx->lookup_order_list);
-    if (ret != EOK) {
+    if (ret != EOK && ret != ENOENT) {
         DEBUG(SSSDBG_MINOR_FAILURE,
               "Cannot get the \"lookup_order\" option.\n"
               "The set up lookup_order won't be followed [%d]: %s.\n",
```
"""

See the full comment at 
https://github.com/SSSD/sssd/pull/187#issuecomment-288053292
_______________________________________________
sssd-devel mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to