diff options
author | Jakub Hrozek <jhrozek@redhat.com> | 2013-04-29 14:37:27 +0200 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-04-29 20:34:19 +0200 |
commit | 36c50faf2674a3ebd8a6458f3c53fb72a68d1f28 (patch) | |
tree | fc991420ec485d990074a668d447c6688b75f272 /src/db | |
parent | 46222e5191473f9a46aec581273eb2eef22e23be (diff) | |
download | sssd-36c50faf2674a3ebd8a6458f3c53fb72a68d1f28.tar.gz sssd-36c50faf2674a3ebd8a6458f3c53fb72a68d1f28.tar.bz2 sssd-36c50faf2674a3ebd8a6458f3c53fb72a68d1f28.zip |
Only try to relink ghost users if we're not enumerating
https://fedorahosted.org/sssd/ticket/1893
When SSSD is not enumerating (which is the default), we are trying to
link any "ghost" entries with a newly created user entry. However, when
enumeration is on, this means a spurious search on adding any user.
Diffstat (limited to 'src/db')
-rw-r--r-- | src/db/sysdb_ops.c | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/src/db/sysdb_ops.c b/src/db/sysdb_ops.c index 1f27af8d..45a7265c 100644 --- a/src/db/sysdb_ops.c +++ b/src/db/sysdb_ops.c @@ -1199,10 +1199,15 @@ int sysdb_add_user(struct sysdb_ctx *sysdb, ret = sysdb_set_user_attr(sysdb, domain, name, attrs, SYSDB_MOD_REP); if (ret) goto done; - /* remove all ghost users */ - ret = sysdb_remove_ghostattr_from_groups(sysdb, domain, - orig_dn, attrs, name); - if (ret) goto done; + if (domain->enumerate == false) { + /* If we're not enumerating, previous getgr{nam,gid} calls might + * have stored ghost users into the cache, so we need to link them + * with the newly-created user entry + */ + ret = sysdb_remove_ghostattr_from_groups(sysdb, domain, + orig_dn, attrs, name); + if (ret) goto done; + } ret = EOK; |