summaryrefslogtreecommitdiffstats
path: root/server/Makefile.in
Commit message (Collapse)AuthorAgeFilesLines
* Make tests configurableJakub Hrozek2009-03-021-2/+5
|
* Create and own /var/lib/sss, memberof.so packagingJakub Hrozek2009-03-021-5/+14
| | | | | Own everything in /usr/libexec/sssd in specfile, no nss_client subdir Place memberof.so in /usr/lib/ldb
* first version of LOCAL pam backendSumit Bose2009-03-021-0/+3
|
* Stop building replace.o until we decide if we use it again.Simo Sorce2009-02-261-1/+1
|
* Rebase the code to use talloc, tdb, tevent, ldb as externalSimo Sorce2009-02-261-4/+4
| | | | | | dependencies based on the latest samba code. Convert all references to the old events library to use the renamed tevent library.
* top-level Makefile, create libdir/name in server/Makefile.inJakub Hrozek2009-02-251-0/+1
|
* Add PAM responderSumit Bose2009-02-241-4/+20
| | | | | | | Also move responders under server/responder with shared code in server/responder/common Signed-off-by: Simo Sorce <ssorce@redhat.com>
* Adding support for CheckPermissions to InfoPipe.Stephen Gallagher2009-02-241-4/+9
| | | | | | | | | CheckPermissions will currently return unrestricted access to the root user, and no access to any other user. Once we decide on an ACL mechanism, this will be easy to change. I have also added very basic tests for the Introspect and CheckPermissions methods.
* Adding support for generating RPMS for sssd.Stephen Gallagher2009-02-241-14/+43
| | | | | | | | | | | | | Fixing TDB autoconf macros to require version 1.1.3 and support for the tdb_repack symbol (required by LDB) Updating tdb.h to #include <sys/stat.h> for proper autoconf Build system modifications to simplify RPM generation Fixing RPM build system as recommended during code review Minor tweaks to Makefile and sssd.spec Make policykit and infopipe configurable Soname and symlinks
* Add D-BUS introspection to InfoPipe This function is necessary to play nice ↵Stephen Gallagher2009-02-241-2/+10
| | | | with D-BUS clients built in multiple languages. It will read in the XML file on the first request and store the returned XML as a component of the sbus_message_handler_ctx for the connection. All subsequent requests during the process' lifetime will be returned from the stored memory. This is perfectly safe, as the available methods cannot change during the process lifetime.
* Reorganize sysdb a bit,Simo Sorce2009-02-201-2/+1
| | | | | | | rename _posix_ function into _legacy_ Add support for the posix legacy mode where memberships are stored in memberUId and not in member/memberof pairs. Do not build sysdb as a library
* Adding sysdb_store_group_posix with unit testStephen Gallagher2009-02-121-5/+12
|
* server.mk was included twice by mistakeSimo Sorce2009-01-281-2/+0
|
* Add a memberof plugin so that we can properly apply the same group membershipsSimo Sorce2009-01-281-7/+11
| | | | | | as in IPA if necessary. This patch slightly modifies ldb to split out a modules header file without exposing the private headers.
* Move install directiuves into Makefile.inSimo Sorce2009-01-281-0/+4
|
* Preliminary support for enabling InfoPipe to listen on the D-BUS system bus. ↵Stephen Gallagher2009-01-271-2/+8
| | | | It will connect and authenticate successfully (using the included D-BUS policy file installed in the correct /etc directory. Does not yet listen for requests.
* Add skeleton for PolicyKit back-endStephen Gallagher2009-01-271-1/+1
|
* Add skeleton for InfoPipe serviceStephen Gallagher2009-01-271-1/+1
|
* Automatically generate the config.ldb if it doesn't exist (i.e. First startup)Stephen Gallagher2009-01-271-1/+2
|
* Fixes to the makefile to get make install to work properlyStephen Gallagher2009-01-271-2/+8
|
* Turn ldap_provider.c into proxy.c and make it possible to load just anySimo Sorce2009-01-111-1/+1
| | | | libnss library through config directives on the domain object
* Adding 'lib' to the server build directories. Fixes a build failure during ↵Stephen Gallagher2009-01-091-1/+1
| | | | the first attempt to build the SSSD from source. The build process did not create the appropriate output directories for the back-end providers, and therefore could not produce an output library into that directory.
* Initial work on a test provider using the gross hack of dlopen()ing nss_ldapSimo Sorce2008-12-101-2/+3
| | | | :-)
* Change data provider into a hub, where backends (ldap, nis, ipa providers)Simo Sorce2008-12-081-1/+1
| | | | and frontends (pam, nss, ... modules) can connect to.
* Make a binary out of each major sssd component instead ofSimo Sorce2008-11-251-1/+1
| | | | using the same binary to fork off all services.
* REmove test client. It's not needed anymore.Simo Sorce2008-11-241-1/+1
|
* Moved method handling into sssd_dbus_connection.c. Added support for ↵Stephen Gallagher2008-11-031-1/+1
| | | | handling multiple D-BUS paths in a connection. Added support for per-connection method setup. Added support for per-connection specialized destructors. Added mandatory getIdentity call for all services connecting to the monitor. If they do not present an identity (expose the getIdentity method and respond with name and version), they are dropped immediately. Other minor fixes.
* Integrate D-BUS support for use as IPC between parts.Stephen Gallagher2008-10-241-4/+7
| | | | Integrates DBUS with the event system so that it is asynchronous.
* First retrieval of a user (getpwnam only) from an actual ldb fileSimo Sorce2008-10-081-3/+5
|
* Make it possible to pass extra CFLAGS and LDFLAGS by passingSimo Sorce2008-10-041-1/+1
| | | | them on the command line before calling makefiles
* Initital server code.Simo Sorce2008-10-041-0/+97
Includes test monitor task.