summaryrefslogtreecommitdiff
path: root/server/tools/sss_sync_ops.c
AgeCommit message (Collapse)AuthorFilesLines
2010-02-18Rename server/ directory to src/Stephen Gallagher1-1838/+0
Also update BUILD.txt
2009-11-09Fix tevent_req error checking.Simo Sorce1-6/+1
When possible using a macro that correctly deals with tstate
2009-11-06Always set last update and expire timeSimo Sorce1-2/+2
modifications to existing users/groups were setting metadata, but creation was not. Fixes #259
2009-10-22User home directories managementJakub Hrozek1-16/+110
Create and populate user directories on useradd, delete them on userdel Fixes: #212
2009-10-14Fix error messages in toolsJakub Hrozek1-0/+201
Add getpwnam, getgrnam sync versions Fix ticket #164: Groupnames in non-local domains Fix ticket #100: Error Message Modifying a user that doesn't Exist Fix ticket #214: incorrect error message when MPG already exists Fix ticket #188: Deleting and modifying users in non-local domain Fix ticket #120: Adding a user to a full domain gives unhelpful error message
2009-10-01Fix tools sync operations and mem hierarchySimo Sorce1-1/+79
Tools were using nested loops that are illegal. (and enforced in latest tevent with a nice abort()) Fix them by creating appropriate synchronous transaction calls. Also fix tools_ctx mem hierarchy setup.
2009-09-25Upgrade confdb to version 2Stephen Gallagher1-8/+11
This converts a great many configuration options to the new standard format.
2009-09-21Decouple synchronous sysdb interface from toolsJakub Hrozek1-0/+1467
Instead of working directly with async code in tools, create synchronous wrappers that could be used by tools and python bindings. Also resolves many issues with code duplication in tools and thus fixes ticket #87