summaryrefslogtreecommitdiffstats
path: root/pam-ck-connector
Commit message (Collapse)AuthorAgeFilesLines
* fix typo in man pageWilliam Jon McCann2008-01-281-1/+1
|
* use unix-user instead of userWilliam Jon McCann2007-09-181-1/+1
|
* fix typosWilliam Jon McCann2007-04-041-2/+2
|
* add support for CKCON_X11_DISPLAY_DEVICE environment variableWilliam Jon McCann2007-04-042-9/+23
| | | | | In order to set the x11-display-device parameter on the new session.
* make sure no values are NULLWilliam Jon McCann2007-04-031-0/+8
|
* check for empty string as well as null valuesWilliam Jon McCann2007-04-031-6/+11
|
* autoconf fixes, separate pamlibdir variable, path expansion at make timeMichael Biebl2007-04-021-2/+1
| | | | | | | | | | | | | | | | | | The attached patch does the following: - Use a separate $pam-module-dir variable for the pam module - Instead of defining a custom $slibdir variable, just use the standard $libdir variable specified by autoconf - Use the standard autoconf $docdir variable (Add AC_PREREQ(2.59) for that). - Drop AS_AC_EXPAND macro and remove AC_DEFINE_UNQUOTED for dir variables. + Build the init script at make time using sed + Use defines in src/Makefile.am to pass the variables to gcc at make time - Consistently use AC_HELP_STRING everywhere - Remove/Replace deprecated macros: + AM_INIT_AUTOMAKE takes the package name and version number from AC_INIT + AM_CONFIG_HEADER -> AC_CONFIG_HEADERS + AC_OUTPUT -> AC_CONFIG_FILES Patch is tested and make distcheck works.
* make pam module install into $slibdirDoug Goldstein2007-03-301-1/+1
| | | | | | Basically the path for the pam module is hardcoded to /lib/security which isn't right. Attached is a patch that uses the value of slibdir for /lib/.
* fix missed pam_syslog changeWilliam Jon McCann2007-03-151-3/+3
| | | | Also make the configure checks simpler.
* fix building pam module on debian systemsWilliam Jon McCann2007-03-151-14/+87
| | | | | Only include what is available. Use a alternative to pam_syslog if it isn't available.
* update all .gitignore filesWilliam Jon McCann2007-03-081-0/+8
|
* use paths.h if availableWilliam Jon McCann2007-03-062-3/+19
|
* add is-local back to the pam moduleWilliam Jon McCann2007-03-061-0/+4
|
* try to parse the real meaning of PAM_TTYWilliam Jon McCann2007-03-051-0/+10
|
* use with_parameters and add remote-host-name if availableWilliam Jon McCann2007-03-051-10/+39
|
* dist the manual page for the PAM moduleDavid Zeuthen2007-03-011-0/+4
|
* add a test program for the PAM moduleWilliam Jon McCann2007-03-013-5/+170
| | | | | Basically this is a mini login. It authenticates, opens a session, sleeps 20 seconds, and then closes the session.
* fix some typosWilliam Jon McCann2007-03-011-4/+3
|
* change the connector API a bit + misc analityWilliam Jon McCann2007-02-281-128/+159
| | | | | | | | | | | | I modified the API of the new connector a bit. * include errors * make names a bit more consistent with what they do * have symmetry between open and close * use refcounting * do parameter checking on inputs I also made some changes to whitespace and style. And converted descriptions to gtkdoc style comments.
* add a connector library and (reluctantly) a PAM moduleDavid Zeuthen2007-02-283-0/+325
Here are some patches to add one library and one PAM module so other programs (apart from gdm) can easily interact with ConsoleKit. It's mainly going to be used, I think, by login(1) and xinit(1). I'm not super happy about doing a PAM module but the Fedora util-linux package maintainer seems to be insist on this instead of just patching login(1). The PAM module isn't built by default. Both pieces of code are licensed under the MIT license as god knows what might want to use them. Sounds good to you?