Cleanup spec
[profile/ivi/pam.git] / modules / pam_deny / README
1 pam_deny — The locking-out PAM module
2
3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
4
5 DESCRIPTION
6
7 This module can be used to deny access. It always indicates a failure to the
8 application through the PAM framework. It might be suitable for using for
9 default (the OTHER) entries.
10
11 EXAMPLES
12
13 #%PAM-1.0
14 #
15 # If we don't have config entries for a service, the
16 # OTHER entries are used. To be secure, warn and deny
17 # access to everything.
18 other auth     required       pam_warn.so
19 other auth     required       pam_deny.so
20 other account  required       pam_warn.so
21 other account  required       pam_deny.so
22 other password required       pam_warn.so
23 other password required       pam_deny.so
24 other session  required       pam_warn.so
25 other session  required       pam_deny.so
26
27
28 AUTHOR
29
30 pam_deny was written by Andrew G. Morgan <morgan@kernel.org>
31