summaryrefslogtreecommitdiffstats
path: root/server/tools/sss_sync_ops.h
Commit message (Collapse)AuthorAgeFilesLines
* User home directories managementJakub Hrozek2009-10-221-1/+22
| | | | | | Create and populate user directories on useradd, delete them on userdel Fixes: #212
* Fix error messages in toolsJakub Hrozek2009-10-141-0/+14
| | | | | | | | | | 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
* Fix tools sync operations and mem hierarchySimo Sorce2009-10-011-0/+4
| | | | | | | 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.
* Decouple synchronous sysdb interface from toolsJakub Hrozek2009-09-211-0/+86
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