summaryrefslogtreecommitdiffstats
path: root/Makefile.am
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* Fix module registration with newer LDB libraries.Stephen Gallagher2011-02-111-0/+1
|
* Build and install translated man pages by defaultSumit Bose2010-12-231-3/+0
|
* Make manual pages translatableJakub Hrozek2010-12-221-37/+10
| | | | | | | | | Utilizes PO4A to extract translatable strings from Docbook XML sources and allows translators to submit ordinary .PO files. PO4A then generates translated Docbook documents that can be used to generate translated end user documentation. https://fedorahosted.org/sssd/ticket/297
* Serialize requests of the same user in the krb5 providerSumit Bose2010-12-201-0/+2
|
* Bye, bye, ipa_timerulesSumit Bose2010-12-081-20/+0
| | | | | | It was decided that IPA HBAC will move to a different format to specify time ranges in access control rules. The evaluation based on the old format is not needed anymore.
* Add support for FAST in krb5 providerSumit Bose2010-12-071-0/+1
|
* Make sure that sss_obfuscate installs as executableStephen Gallagher2010-12-061-1/+1
|
* Add support for automatic Kerberos ticket renewalSumit Bose2010-12-031-0/+2
|
* Add krb5_renewable_lifetime optionSumit Bose2010-12-031-0/+1
|
* Print correct error messages for dp_err_to_string()Stephen Gallagher2010-11-241-1/+2
| | | | | | | | | | | All errnum values passed into this function throughout the code are PAM error codes, but we were passing them through strerror() to print them, which is only meaningful for ERRNO error codes. This patch changes dp_err_to_string() to use pam_strerror() and renames it to dp_pam_err_to_string() for clarity. https://fedorahosted.org/sssd/ticket/636
* Sanitize search filters in memberOf pluginStephen Gallagher2010-11-151-1/+3
|
* Make handle_child_* request publicSumit Bose2010-11-041-1/+3
| | | | | | I took the opportunity to move everything related to the handling of the krb5_child into a separate file and cleaned the interfaces and related structures a bit.
* Add infrastructure for Kerberos access providerSumit Bose2010-11-041-1/+3
|
* Always use uint32_t for UID/GID numbersJakub Hrozek2010-10-261-0/+1
|
* Improve versioning for automated buildsStephen Gallagher2010-10-261-5/+5
| | | | | | Also changes 'make srpms' and 'make prerelease-srpms' to 'make srpm' and 'make prerelease-srpm', as we are only building one SRPM.
* Implement netgroups for proxy providerSumit Bose2010-10-251-0/+1
|
* Write log opening failures to the syslogStephen Gallagher2010-10-191-1/+1
| | | | | If there is a problem with reopening the logs, it can be an audit trail issue.
* Fix 'make distcheck' for XML documentationStephen Gallagher2010-10-181-1/+1
| | | | | A missing $(srcdir) variable was preventing 'make distcheck' from working if run from a parallel build directory.
* Rename upgrade_config.py and build it properlyStephen Gallagher2010-10-131-4/+2
| | | | | | | | Previously, we were just copying the script into the libexec dir during installation. However, this causes problems for packaging multilib on several distributions. https://fedorahosted.org/sssd/ticket/641
* Implement netgroup support for LDAP providerSumit Bose2010-10-131-0/+4
|
* Add netgroup support to the NSS responderStephen Gallagher2010-10-131-0/+3
|
* Add support for netgroups to NSS sss_clientStephen Gallagher2010-10-131-1/+3
|
* Rename group.c and passwd.c for clarityStephen Gallagher2010-10-131-2/+2
| | | | | Prefixing group.c and passwd.c with "nss_" similar to the way the PAM client sources are prefixed with "pam_"
* Initialize kerberos service for GSSAPIJakub Hrozek2010-10-131-0/+1
|
* Remove unused definesSumit Bose2010-10-131-2/+0
|
* Distribute XML sources instead of man-pagesSumit Bose2010-10-131-2/+3
|
* Add common hash table setupStephen Gallagher2010-10-081-1/+2
| | | | | sss_hash_create() produces a dhash table living in the talloc hierarchy.
* Revert "Make ldap bind asynchronous"Jakub Hrozek2010-09-151-3/+0
| | | | This reverts 56d8d19ac9d857580a233d8264e851883b883c67