diff options
author | Thorsten Kukuk <kukuk@thkukuk.de> | 2006-02-10 18:33:54 +0000 |
---|---|---|
committer | Thorsten Kukuk <kukuk@thkukuk.de> | 2006-02-10 18:33:54 +0000 |
commit | 2c388144eb7c68aa31c20c00f6c054c219bf72a2 (patch) | |
tree | 0469cc1f27d1696ba062a670ea4f4b625e7e4052 /doc/modules/pam_userdb.sgml | |
parent | 486d687f4c63d5712a850807952383e785e387ba (diff) | |
download | pam-2c388144eb7c68aa31c20c00f6c054c219bf72a2.tar.gz pam-2c388144eb7c68aa31c20c00f6c054c219bf72a2.tar.bz2 pam-2c388144eb7c68aa31c20c00f6c054c219bf72a2.zip |
Relevant BUGIDs:
Purpose of commit:
Commit summary:
---------------
Remove pam_pwdb and all references to it.
2006-02-10 Thorsten Kukuk <kukuk@thkukuk.de>
* configure.in: Remove pam_pwdb support.
* modules/Makefile.am: remove pam_pwdb.
* modules/pam_pwdb: Remove complete directory.
* libpam/Makefile.am: Remove LIBPWDB references.
* libpam/pam_static_modules.h: Remove pam_pwdb references.
* doc/modules/pam_pwdb.sgml: Removed.
* po/POTFILES.in: Remove modules/pam_pwdb/*.c entries.
* doc/pam_source.sgml: Remove references to libpwdb.
* doc/modules/pam_limits.sgml: Remove wrong reference to libpwdb.
* doc/modules/pam_group.sgml: Likewise.
* doc/modules/pam_cracklib.sgml: Replace pam_pwdb with pam_unix.
* doc/modules/pam_userdb.sgml: Likewise.
* modules/pam_cracklib/pam_cracklib.8.xml: Replace pam_pwdb
with pam_unix.
* modules/pam_mkhomedir/pam_mkhomedir.c: Likewise.
* modules/pam_group/pam_group.c: Remove dead code for libpwdb.
Diffstat (limited to 'doc/modules/pam_userdb.sgml')
-rw-r--r-- | doc/modules/pam_userdb.sgml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/modules/pam_userdb.sgml b/doc/modules/pam_userdb.sgml index facf223e..566e68de 100644 --- a/doc/modules/pam_userdb.sgml +++ b/doc/modules/pam_userdb.sgml @@ -61,7 +61,7 @@ fields corresponding to the username keys are the passwords, in unencrypted form so caution must be exercised over the access rights to the DB database itself.. The module will read the password from the user using the conversation mechanism. If -you are using this module on top of another authentication module (like <tt/pam_pwdb/;) +you are using this module on top of another authentication module (like <tt/pam_unix/;) then you should tell that module to read the entered password from the PAM_AUTHTOK field, which is set by this module. <p> @@ -112,10 +112,10 @@ provided in the <tt>/etc/dbtest.db</tt> file: #%PAM-1.0 auth required pam_listfile.so item=user sense=deny file=/etc/ftpusers onerr=succeed auth sufficient pam_userdb.so icase db=/etc/dbtest -auth required pam_pwdb.so shadow nullok try_first_pass +auth required pam_unix.so shadow nullok try_first_pass auth required pam_shells.so -account required pam_pwdb.so -session required pam_pwdb.so +account required pam_unix.so +session required pam_unix.so </verb> </tscreen> |