summaryrefslogtreecommitdiff
path: root/sss_client
AgeCommit message (Collapse)AuthorFilesLines
2009-12-10Add Swedish translation for sss_clientGöran Uddeborg2-0/+37
2009-12-09Add German translationFabian Affolter2-0/+40
2009-12-08Add Spanish translationbeckerde1-8/+10
2009-12-08Add Portuguese translationruigo2-0/+39
2009-11-23Update translation strings for string freezeStephen Gallagher1-1/+0
2009-11-23Update NL translationStephen Gallagher1-6/+6
2009-11-20Add empty NL translationStephen Gallagher2-0/+40
2009-11-18Adding Japanese translationnoriko2-0/+39
2009-11-18Add Italian translation for sss_clientdeneb2-0/+41
2009-11-18Add French translation to sss_clientBouska2-0/+37
2009-11-18Update translatable stringsStephen Gallagher3-18/+18
2009-11-06Clean up unused dependenciesStephen Gallagher2-2/+0
2009-10-27Updating polish translation for 0.7.0Piotr Drąg1-2/+2
Signed-off-by: Stephen Gallagher <sgallagh@redhat.com>
2009-10-23Update version to 0.7.0Stephen Gallagher3-15/+27
Update gettext strings
2009-10-20Clean up rpmlint errors and warnings in sssd-client packageStephen Gallagher1-2/+4
- Run ldconfig in sssd-client post and postun - Version libnss_sss.so as libnss_sss.so.2 (to set the correct SONAME)
2009-10-14use old password if available during password changeSumit Bose1-8/+9
- if the password is reset by root we do not ask for a password during PAM_PRELIM_CHECK. But if there is one available during PAM_UPDATE_AUTHTOK we will use it, because now we are in an expired password dialog.
2009-10-08add syslog message similar to pam_unixSumit Bose1-2/+14
2009-10-05ask for new password if password is expiredSumit Bose1-7/+40
2009-10-05move password handling into subroutinesSumit Bose1-71/+117
2009-10-01Update polish translation for 0.6.0Piotr Drąg1-2/+2
2009-09-25Update version to 0.6.0Stephen Gallagher3-15/+15
Update gettext strings
2009-09-23add a man page for pam_sssSumit Bose5-23/+211
2009-09-16Add missing updates to LINGUAS for pl translationStephen Gallagher1-0/+1
2009-09-16Add pl translationPiotr Drąg1-0/+30
2009-09-15Include m4 directories in tarballStephen Gallagher1-1/+2
Necessary for RPM builds on RHEL5
2009-09-14make cli_pid mandatory and increase version number of pam protocolSumit Bose2-3/+3
2009-09-14remove unused client locale from PAM protocolSumit Bose1-19/+0
2009-09-14Let the PAM client send its PIDSumit Bose2-10/+36
- the client sends the PID as uint32_t and sssd will use uint32_t too - fix a possible type issue where a uint32_t is sent as int32 in internal dbus communication
2009-09-11Add 'make tests' targetStephen Gallagher1-0/+3
2009-09-11Add copyright noticesJakub Hrozek2-0/+40
Fixes: #138
2009-09-03configure cleanupsSumit Bose4-12/+14
- replaced mailing list address - let sssd base components read version from VERSION
2009-08-28add configure check for errno_tSumit Bose2-0/+7
2009-08-27do not show server messages to userSumit Bose1-5/+0
2009-08-27removed unused header fileSumit Bose1-18/+0
2009-08-24Update version to 0.5.0Stephen Gallagher2-5/+29
Update gettext strings
2009-08-24Catch possible bad input passed in by glibcSimo Sorce2-0/+20
Seen in tests and was leading to a segfault
2009-08-20Support gettext >= 0.14 instead of 0.17Stephen Gallagher2-2/+3
This is needed for support of RHEL5 Adding the assignment of $(localedir) was necessary, as gettext 0.14 does not include automatically assign it.
2009-08-11Make socket paths a compile-time optionStephen Gallagher3-7/+25
Previously, we had hardcoded the paths for the NSS, PAM and private PAM sockets to /var/lib/sss/pipes. With this patch, we will specify the sockets with --with-pipe-path.
2009-07-22cleanup of pam_sssSumit Bose1-250/+241
- make pam_sss work with pam_cracklib and similar pam modules - clean up the if-&&-else-|| jungle to make clear what is happening
2009-07-13Build all SSSD components with warnings enabledStephen Gallagher2-0/+7
Previously, only the SSSD server components were being built with compile-time warnings enabled. This patch will ensure that all components in common and sss_client are also built the same way.
2009-07-08Add dumb way to clean up .X filesSimo Sorce1-0/+2
2009-07-03Cleanup warnings in client and server codeSimo Sorce1-2/+2
2009-07-02added kerberos backend with tevent_req event handlingSumit Bose1-1/+1
2009-06-30Add pam_sss_macros.h to "make dist"Stephen Gallagher1-1/+2
When I added the new header, I forgot to add it to Makefile.am, so it was not included by automake when generating a tarball using make dist-gzip.
2009-06-25Implement _pam_overwrite_n(n,x) for older systemsStephen Gallagher2-0/+31
OSes based on older versions of the PAM development libraries lack the _pam_overwrite_n(n,x) macro. This patch copies the Fedora 11 pam-devel-1.0.91-6 implementation into an SSSD private header. This affects RHEL5 and SUSE10.
2009-06-18Do not treat warnings as errorsStephen Gallagher1-3/+0
2009-06-16Control sss_client exportsStephen Gallagher3-2/+11
2009-06-16Add --with-aux-info config option to SSS clientStephen Gallagher2-0/+13
2009-06-02Enable quiet build for automake >= 1.11Stephen Gallagher1-0/+3
If automake 1.11 or higher is available, use of the configure option '--enable-silent-rules' will suppress most build messages and replace them with lines such as CC sysdb.o This affects libtool as well.
2009-06-02Fix nasty bug in rendering the password fieldSimo Sorce1-2/+1
An error introduced with the last tidyup patches would skip the first char of the password field.