From 078586a74f99aa02a64545abd7fd085677fa424b Mon Sep 17 00:00:00 2001 From: Pavel Březina Date: Fri, 26 Jul 2013 12:25:01 +0200 Subject: sudo: skip rule on error instead of failing completely https://fedorahosted.org/sssd/ticket/2031 --- src/providers/ldap/sdap_sudo_cache.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/providers/ldap/sdap_sudo_cache.c b/src/providers/ldap/sdap_sudo_cache.c index 499db02f6..39ebbed2e 100644 --- a/src/providers/ldap/sdap_sudo_cache.c +++ b/src/providers/ldap/sdap_sudo_cache.c @@ -132,7 +132,9 @@ sdap_save_native_sudorule_list(TALLOC_CTX *mem_ctx, ret = sdap_save_native_sudorule(tmp_ctx, sysdb_ctx, map, replies[i], cache_timeout, now, &usn_value); if (ret != EOK) { - goto fail; + DEBUG(SSSDBG_CRIT_FAILURE, ("Failed to save sudo rule, " + "will continue with next...\n")); + continue; } /* find highest usn */ -- cgit