aboutsummaryrefslogtreecommitdiff
path: root/doc/modules/pam_cracklib.sgml
diff options
context:
space:
mode:
authorThorsten Kukuk <kukuk@thkukuk.de>2006-02-10 18:33:54 +0000
committerThorsten Kukuk <kukuk@thkukuk.de>2006-02-10 18:33:54 +0000
commit2c388144eb7c68aa31c20c00f6c054c219bf72a2 (patch)
tree0469cc1f27d1696ba062a670ea4f4b625e7e4052 /doc/modules/pam_cracklib.sgml
parent486d687f4c63d5712a850807952383e785e387ba (diff)
downloadpam-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_cracklib.sgml')
-rw-r--r--doc/modules/pam_cracklib.sgml12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/modules/pam_cracklib.sgml b/doc/modules/pam_cracklib.sgml
index 008e49f6..2cbfca45 100644
--- a/doc/modules/pam_cracklib.sgml
+++ b/doc/modules/pam_cracklib.sgml
@@ -231,18 +231,18 @@ for a new password but use the one provided by the previously stacked
<p>
For an example of the use of this module, we show how it may be
-stacked with the password component of <tt/pam_pwdb/:
+stacked with the password component of <tt/pam_unix/:
<tscreen>
<verb>
#
# These lines stack two password type modules. In this example the
# user is given 3 opportunities to enter a strong password. The
-# "use_authtok" argument ensures that the pam_pwdb module does not
+# "use_authtok" argument ensures that the pam_unix module does not
# prompt for a password, but instead uses the one provided by
# pam_cracklib.
#
passwd password required pam_cracklib.so retry=3
-passwd password required pam_pwdb.so use_authtok
+passwd password required pam_unix.so use_authtok
</verb>
</tscreen>
@@ -260,7 +260,7 @@ case that you want to use md5 password encryption:
#
password required pam_cracklib.so \
difok=3 minlen=15 dcredit= 2 ocredit=2
-password required pam_pwdb.so use_authtok nullok md5
+password required pam_unix.so use_authtok nullok md5
</verb>
</tscreen>
@@ -276,7 +276,7 @@ And here is another example in case you don't want to use credits:
#
password required pam_cracklib.so \
dcredit=-1 ucredit=-1 ocredit=-1 lcredit=0 minlen=8
-password required pam_pwdb.so use_authtok nullok md5
+password required pam_unix.so use_authtok nullok md5
</verb>
</tscreen>
@@ -293,7 +293,7 @@ length of 8:
#
password required pam_cracklib.so \
dcredit=0 ucredit=0 ocredit=0 lcredit=0 minlen=8
-password required pam_pwdb.so use_authtok nullok md5
+password required pam_unix.so use_authtok nullok md5
</verb>
</tscreen>