Merge from vendor branch AWK:
[dragonfly.git] / contrib / libpam / modules / pam_userdb / README
1 # $FreeBSD: src/contrib/libpam/modules/pam_userdb/README,v 1.1.1.1.2.2 2001/06/11 15:28:33 markm Exp $
2 # $DragonFly: src/contrib/libpam/modules/pam_userdb/Attic/README,v 1.2 2003/06/17 04:24:03 dillon Exp $
3 pam_userdb:
4         Look up users in a .db database and verify their password against
5         what is contained in that database.
6
7 RECOGNIZED ARGUMENTS:
8         debug           write a message to syslog indicating success or
9                         failure.
10
11         db=[path]       use the [path] database for performing lookup. There
12                         is no default; the module will return PAM_IGNORE if
13                         no database is provided.
14                         
15         icase           make the password verification to be case insensitive
16                         (ie when working with registration numbers and such)
17
18         dump            dump all the entries in the database to the log (eek,
19                         don't do this by default!)
20
21 MODULE SERVICES PROVIDED:
22         auth            _authetication and _setcred (blank)
23
24 EXAMPLE USE:
25         auth  sufficient pam_userdb.so icase db=/tmp/dbtest.db
26
27 AUTHOR:
28         Cristian Gafton <gafton@redhat.com>
29
30
31
32 $Id: README,v 1.1.1.1 2000/06/20 22:12:09 agmorgan Exp $