summaryrefslogtreecommitdiffstats
path: root/Makefile.am
Commit message (Collapse)AuthorAgeFilesLines
* SUDO: Provide documentation for the SUDO APIJakub Hrozek2012-01-301-2/+5
|
* SSSDConfigAPI: Move sssd.api.* to /usr/share/sssdStephen Gallagher2012-01-301-2/+4
| | | | https://fedorahosted.org/sssd/ticket/1158
* PROXY: add support for service lookups (non-enumeration)Stephen Gallagher2012-01-271-0/+1
|
* NSS: Add getservbyname and getservbyport support to the NSS ResponderStephen Gallagher2012-01-271-0/+2
|
* NSS: Add client support for services (non-enumeration)Stephen Gallagher2012-01-271-0/+1
|
* SYSDB: Add sysdb routines for manipulating service entriesStephen Gallagher2012-01-271-0/+2
|
* SUDO: include the sources in the IPA provider, tooJakub Hrozek2012-01-181-0/+6
|
* Add a new Makefile target to build RPMs with the experimental flagJakub Hrozek2012-01-171-4/+16
|
* Export libsss_sudo as a separate packageJakub Hrozek2012-01-171-7/+29
|
* SUDO Integration - periodical update of rules in data providerPavel Březina2012-01-171-0/+2
| | | | | | | | https://fedorahosted.org/sssd/ticket/1110 Adds new configuration options: - ldap_sudo_refresh_enabled - enable/disable periodical updates - ldap_sudo_refresh_timeout - rules timeout (refresh period)
* util: add murmurhash3 hash functionSimo Sorce2012-01-091-1/+3
|
* PAM: make initgroups timeout work across multiple clientsStephen Gallagher2011-12-201-0/+2
| | | | | | | | | | | Instead of timing out the initgroups lookup on a per-cctx basis, we will maintain a hash table of recently-seen users and use this instead. This will allow SSSD to handle user's logging into multiple services simultaneously more graciously, as well as playing nicer with SSH (which makes calls to PAM both before and after a fork). https://fedorahosted.org/sssd/ticket/1063
* Move child_common routines to utilStephen Gallagher2011-12-191-7/+7
|
* Add common SIGCHLD handling for providers.Pavel Zuna2011-12-191-2/+9
|
* SUDO Integration - pseudo client for testingPavel Březina2011-12-161-0/+15
|
* SUDO Integration - responderPavel Březina2011-12-161-0/+17
|
* SUDO integration - LDAP providerPavel Březina2011-12-161-1/+3
|
* SUDO Integration - LDAP provider - save sudo rules functionsJakub Hrozek2011-12-161-0/+4
|
* SUDO Integration - sysdb interfaceJakub Hrozek2011-12-161-0/+4
|
* SUDO integration - client common interfacePavel Březina2011-12-161-0/+1
|
* sss_utf8_tolower utility function+unit testsJakub Hrozek2011-12-161-1/+2
|
* Allow using Glib for UTF8 supportStephen Gallagher2011-12-051-7/+12
|
* Add -fno-strict-aliasingStephen Gallagher2011-11-281-1/+2
|
* Fix broken build due to commit of IPA netgroup supportStephen Gallagher2011-11-231-0/+1
|
* Added IPA account info handlerJan Zeleny2011-11-231-0/+1
| | | | | Currently it is only handling netgroups by itself, other requests are forwarded to LDAP provider.
* Added support for fetching netgroups in IPA providerJan Zeleny2011-11-231-0/+1
|
* Set more strict permissions on keyringSimo Sorce2011-11-221-0/+1
| | | | | We want to confine access to the keyring to the current process and not let root easily peek into the keyring contents.
* RESPONDER: Ensure that all input strings are valid UTF-8Stephen Gallagher2011-11-181-2/+4
|
* BUILDSYS: Fix --without-manpagesStephen Gallagher2011-10-141-1/+7
| | | | | | | | | We weren't honoring the --without-manpages option, and this was causing builds to break. Note: 'make dist[check]' will not work if you have configured with --without-manpages because it will not be able to pre-generate the translation files necessary for tarball release.
* SYSDB: New source file for sysdb upgrade routinesStephen Gallagher2011-10-071-0/+1
|
* Improve documentation of libipa_hbacStephen Gallagher2011-09-081-0/+1
|
* sss_debuglevel - change the debug levels on the flyPavel Březina2011-09-061-1/+9
| | | | https://fedorahosted.org/sssd/ticket/950
* Add option to specify the kerberos replay cache dirStephen Gallagher2011-09-021-0/+4
| | | | | | | Adds a configure option to set the distribution default as well as an sssd.conf option to override it. https://fedorahosted.org/sssd/ticket/980
* New DEBUG facility - unit testsPavel Březina2011-08-251-0/+11
| | | | https://fedorahosted.org/sssd/ticket/925
* sdap_async_accounts.c splitJan Zeleny2011-08-151-2/+6
| | | | | | | | | The file has been split in three: sdap_async_users.c sdap_async_groups.c sdap_async_initgroups.c https://fedorahosted.org/sssd/ticket/864
* Rename sssd.conf to sssd-example.confStephen Gallagher2011-08-081-1/+1
| | | | | | | This file should not be installed by default. It leads to user confusion. We will instead install it as documentation. Fix incorrect example of entry_cache_nowait_percentage
* Add rule validator to libipa_hbacStephen Gallagher2011-08-011-1/+1
| | | | https://fedorahosted.org/sssd/ticket/943
* libipa_hbac: Support case-insensitive comparisons with UTF8Stephen Gallagher2011-07-291-1/+2
|
* Fix python HBAC bindings for python <= 2.4Jakub Hrozek2011-07-131-1/+3
| | | | | | | | | | | | | | | Several parts of the HBAC python bindings did not work with old Python versions, such as the one shipped in RHEL5. The changes include: * a compatibility wrapper around python set object * PyModule_AddIntMacro compat macro * Py_ssize_t compat definition * Do not use PyUnicode_FromFormat * several function prototypes and structures used to have "char arguments where they have "const char *" in recent versions. This caused compilation warnings this patch mitigates by using the discard_const hack on python 2.4
* Provide python bindings for the HBAC evaluator libraryJakub Hrozek2011-07-081-3/+18
|
* Add new HBAC lookup and evaluation routinesStephen Gallagher2011-07-081-1/+2
|
* Add helper functions for looking up HBAC rule componentsStephen Gallagher2011-07-081-0/+6
|
* Add HBAC evaluator and testsStephen Gallagher2011-07-081-1/+27
|
* Add missing libsss_util to proxy providerSumit Bose2011-06-151-0/+1
|
* Build sssd utils as a libtool helper libraryStephen Gallagher2011-05-231-88/+98
| | | | | | This will speed up the build, as we are not recompiling the same sources multiple times for different binaries. These objects will now be built once and then statically linked in.
* Build SSSD plugins without a version numberStephen Gallagher2011-05-231-5/+5
| | | | | | | The version is both fake and unused, so we'll stop creating the versioned file and use only the unversioned .so. This is safe to do for now because all of the plugins are built at the same time as the interface.
* Add support for openldap24 package on RHEL 5.7Sumit Bose2011-05-061-2/+3
|
* Cache cleaning toolJan Zeleny2011-05-041-1/+9
|
* Provide a configuration option to use systemd unit fileJakub Hrozek2011-04-121-3/+12
| | | | https://fedorahosted.org/sssd/ticket/837
* Make 'make check' look nice againSumit Bose2011-02-111-3/+8
| | | | | | | | | With current libldb releases 'make check' will print a lot of 'unable to dlopen' messages although the test will succeed. This patch place the memberof module into a directory of its own to avoid these messages. Additionally this patch introduces TESTS_ENVIRONMENT which allows us to remove the SYSDB_TEST preprocessor definition.