blob: 9fa6519dd86c71d396ade1db8fe54bd3d387c6e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
pam_userdb:
Look up users in a .db database and verify their password against
what is contained in that database.
RECOGNIZED ARGUMENTS:
debug write a message to syslog indicating success or
failure.
db=[path] use the [path] database for performing lookup. There
is no default; the module will return PAM_IGNORE if
no database is provided.
crypt=[mode] indicates whether encrypted or plaintext passwords
are stored in the database. If [mode] is "crypt",
passwords should be stored in the database in
crypt(3) form. If [mode] is "none" or any other
value, passwords should be stored in the database in
plaintext.
icase make the password verification to be case insensitive
(ie when working with registration numbers and such)
only works with plaintext password storage.
dump dump all the entries in the database to the log (eek,
don't do this by default!)
MODULE SERVICES PROVIDED:
auth _authetication and _setcred (blank)
EXAMPLE USE:
auth sufficient pam_userdb.so icase db=/tmp/dbtest.db
AUTHOR:
Cristian Gafton <gafton@redhat.com>
$Id$
|