From 2c7ab882bcc64c9d2bc16091d10a56073c472775 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 3c438b93..db51d1c3 100644 --- a/src/providers/ldap/sdap_sudo_cache.c +++ b/src/providers/ldap/sdap_sudo_cache.c @@ -135,7 +135,9 @@ sdap_save_native_sudorule_list(TALLOC_CTX *mem_ctx, domain, 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