From a1e89ede4995f948abc1acc364246161df7cca2c Mon Sep 17 00:00:00 2001 From: Michal Šrubař Date: Mon, 11 Aug 2014 12:09:01 +0200 Subject: LDAP SUDO: sudo provider doesn't fetch 'EntryUSN' The EntryUSN is not fetched by the sudo LDAP provider when it downloads the rules because sudorule_map is missing this attribute. We forgot to add the SDAP_AT_SUDO_RUNAS into sdap_sudorule_attrs when we added support for sudoRunAs. Related to: https://fedorahosted.org/sssd/ticket/2212 --- src/providers/ldap/sdap.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/providers/ldap') diff --git a/src/providers/ldap/sdap.h b/src/providers/ldap/sdap.h index e5d972901..6bab0e1c1 100644 --- a/src/providers/ldap/sdap.h +++ b/src/providers/ldap/sdap.h @@ -319,6 +319,7 @@ enum sdap_sudorule_attrs { SDAP_AT_SUDO_HOST, SDAP_AT_SUDO_USER, SDAP_AT_SUDO_OPTION, + SDAP_AT_SUDO_RUNAS, SDAP_AT_SUDO_RUNASUSER, SDAP_AT_SUDO_RUNASGROUP, SDAP_AT_SUDO_NOTBEFORE, -- cgit