summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2012-02-07Updating translationsStephen Gallagher37-2188/+2773
2012-02-07Two sssd-ldap manual pages fixesJakub Hrozek1-4/+4
Reported by Marco Pizzoli
2012-02-07AUTOFS: IPA providerJakub Hrozek12-30/+218
2012-02-07Fix SSH compilation on RHEL5Jakub Hrozek2-1/+6
2012-02-06Updating translatable strings for string freezeStephen Gallagher37-17622/+48571
2012-02-07Make sudo installation path configurable, install into libdir by defaultJakub Hrozek2-1/+15
2012-02-07SSH: OpenSSH known_hosts clientJan Cholasta3-1/+522
2012-02-07SSH: OpenSSH authorized_keys clientJan Cholasta3-1/+242
2012-02-07SSH: Common client codeJan Cholasta4-0/+372
2012-02-07SSH: ResponderJan Cholasta8-1/+887
2012-02-07DP: Add support for hosts in sss_dp_get_accountJan Cholasta2-2/+13
Host requests are directed to the host info handler.
2012-02-07IPA: Add host info handlerJan Cholasta13-5/+616
2012-02-07DP: Add host info handlerJan Cholasta7-3/+204
2012-02-07LDAP: Add support for SSH user public keysJan Cholasta10-6/+44
2012-02-07BUILD: Introduce a --with-ssh config optionJan Cholasta1-0/+22
2012-02-07UTIL: Provide base64 encoding and decoding functionsJan Cholasta4-36/+139
2012-02-06SUDO Integration - sysdb_sudo_check_time() fixPavel Březina1-6/+8
2012-02-06SUDO Integration - fix offline behaviourPavel Březina1-2/+2
2012-02-06Update shadowLastChanged attribute during LDAP password changeJan Zeleny8-3/+191
https://fedorahosted.org/sssd/ticket/1019
2012-02-06Man pages for the session target and SELinux user maps fetchingJan Zeleny2-0/+165
2012-02-06Session target in IPA providerJan Zeleny10-0/+1166
2012-02-06Add session target in data providerJan Zeleny6-3/+27
2012-02-06Delete unused structure in IPA access codeJan Zeleny1-7/+0
2012-02-06Separate the host-retrieval code from IPA HBAC to common IPA codeJan Zeleny6-469/+535
2012-02-06SELinux support in PAM moduleJan Zeleny1-1/+60
2012-02-06SELinux support in PAM responderJan Zeleny2-0/+167
2012-02-06Added some SELinux-related sysdb routinesJan Zeleny3-1/+545
2012-02-06Added some SELinux-related utility functionsJan Zeleny2-0/+232
2012-02-06Renamed some sysdb constants for their wider usageJan Zeleny3-11/+9
2012-02-06Make password migration code use the IPA config retrieval codeJan Zeleny1-57/+14
2012-02-06Add support for generic IPA config retrievalJan Zeleny2-0/+208
2012-02-06Fixed minor memory-hierarchy-related issue in IPA HBACJan Zeleny1-1/+2
2012-02-06Implemented support for multiple search bases in HBAC rules and servicesJan Zeleny9-116/+364
2012-02-05Do not call sudo functions if built without-sudoJakub Hrozek2-7/+7
2012-02-05AUTOFS: LDAP providerJakub Hrozek12-2/+1479
2012-02-05AUTOFS: responderJakub Hrozek15-11/+1793
2012-02-05Split the logic to check cache expiration into separate functionJakub Hrozek3-43/+73
2012-02-05RESPONDERS: Refactor setent_req_listJakub Hrozek6-100/+133
Makes the setent_add_ref() and setent_notify_*() functions more generic to be reusable by the autofs responder.
2012-02-05AUTOFS: Data Provider requestJakub Hrozek5-30/+317
2012-02-05AUTOFS: a command-line test clientJakub Hrozek1-0/+116
A very simply binary that can be used to test getting data from the library via SSSD in pretty much the same way SSSD would. A required positional parameter specifies the map name and the tool would print out all the key/value pairs using _sss_getautomntent_r(). You can also specify -n to query a specific key using _sss_getautomntbyname_r().
2012-02-05AUTOFS: a client libraryJakub Hrozek5-0/+451
This is the library the autofs client is using. automounter dlopen()s the library so there is no header file, no pkgconfig file and the library is in the libsss_autofs package, not in -devel. The library provides the following interface: * _sss_setautomntent() - select the map for processing * _sss_getautomntent_r() - iterates through key/value pairs in the selected map. The key is usually the mount point, the value is mount information (server:/export) * _sss_getautomntbyname_r() - returns value for a specific key. * _sss_endautomntent() deselect a map, clean up
2012-02-05AUTOFS: sysdb interfaceJakub Hrozek4-7/+520
2012-02-05SYSDB: Remove code duplication between member_add and member_delJakub Hrozek1-39/+14
2012-02-05BUILD: Introduce a --with-autofs config optionJakub Hrozek1-0/+22
This would allow to select the autofs feature during build without having to select the other features.
2012-02-04Fix configure with old autoconf versionsJakub Hrozek1-1/+0
2012-02-04Move BUILD_SUDO outside the generic LDAP source filesJakub Hrozek5-95/+127
Avoid #ifdefs in the general part of the code
2012-02-04SUDO: introduce a new config option --with-sudoJakub Hrozek1-0/+23
At the time being the option is also turned on when --enable-all-experimental-features is specified. https://fedorahosted.org/sssd/ticket/1145
2012-02-04ConfigAPI: add sudo to known servicesJakub Hrozek3-2/+14
https://fedorahosted.org/sssd/ticket/1144 Squashed patch from Jan Zeleny: Add SUDO provider to the list of available providers in SSSDConfig.py
2012-02-04Fixes for sudo_timedJakub Hrozek2-23/+53
https://fedorahosted.org/sssd/ticket/1116
2012-02-04SUDO Integration - responder 'sudo_timed' optionPavel Březina6-38/+166
https://fedorahosted.org/sssd/ticket/1116