diff options
author | Andrew G. Morgan <morgan@kernel.org> | 2001-02-17 01:55:38 +0000 |
---|---|---|
committer | Andrew G. Morgan <morgan@kernel.org> | 2001-02-17 01:55:38 +0000 |
commit | 585361e3edda12751c3620012fc70d68984b7d8d (patch) | |
tree | 82e4ccf6d176c3976f32a16fdda530debc76a76b | |
parent | c9da49158d9007c8ae27114c8a44289854f777b1 (diff) | |
download | pam-585361e3edda12751c3620012fc70d68984b7d8d.tar.gz pam-585361e3edda12751c3620012fc70d68984b7d8d.tar.bz2 pam-585361e3edda12751c3620012fc70d68984b7d8d.zip |
Relevant BUGIDs: 131549
Purpose of commit: documentation bugfix
Commit summary:
---------------
pam_lastlog was wrongly documented as an 'authentication' module when
it is actually a session module.
-rw-r--r-- | CHANGELOG | 4 | ||||
-rw-r--r-- | doc/modules/pam_lastlog.sgml | 12 |
2 files changed, 9 insertions, 7 deletions
@@ -59,7 +59,9 @@ libpam. Prior versions were buggy - see bugfix for Bug 129775. the bug report, but no uid change was possible so no-one should think they need to issue a security bulletin over this one! (Bug 112540 - agmorgan) -* pam_lastlog needs to be linked with -lutil (Bug 131549 - agmorgan). +* pam_lastlog needs to be linked with -lutil, also removed ambiguity + from sysadmin guide regarding this module being a 'session' module + (Bug 131549 - agmorgan). * pam_cracklib needs to be linked with -lcrypt (old password checking) (Bug 131601 - agmorgan). * fixes for static library builds and also the examples when linked diff --git a/doc/modules/pam_lastlog.sgml b/doc/modules/pam_lastlog.sgml index 2ade5baa..a00f76b1 100644 --- a/doc/modules/pam_lastlog.sgml +++ b/doc/modules/pam_lastlog.sgml @@ -1,7 +1,7 @@ <!-- $Id$ - This file was written by Andrew G. Morgan <morgan@parc.power.net> + This file was written by Andrew G. Morgan <morgan@kernel.org> --> <sect1>The last login module @@ -15,7 +15,7 @@ <tt/pam_lastlog/ <tag><bf>Author:</bf></tag> -Andrew G. Morgan <morgan@parc.power.net> +Andrew G. Morgan <morgan@kernel.org> <tag><bf>Maintainer:</bf></tag> Author @@ -46,7 +46,7 @@ module can also display a line of information about the last login of the user. If an application already performs these tasks, it is not necessary to use this module. -<sect2>Authentication component +<sect2>Session component <p> <descrip> @@ -98,13 +98,13 @@ with a ``welcome..." message. This module can be used to indicate that the user has new mail when they <em/login/ to the system. Here is a sample entry for your -<tt>/etc/pam.conf</tt> file: +<tt>/etc/pam.d/XXX</tt> file: <tscreen> <verb> # -# do we have any mail? +# When were we last here? # -login session optional pam_lastlog.so +session optional pam_lastlog.so </verb> </tscreen> |