summaryrefslogtreecommitdiff
path: root/modules/pam_exec/pam_exec.8
blob: be04b75efb141d3c07b70be6dd8fa6b9478565ea (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
.\" ** You probably do not want to edit this file directly **
.\" It was generated using the DocBook XSL Stylesheets (version 1.69.1).
.\" Instead of manually editing it, you probably should edit the DocBook XML
.\" source for it and then use the DocBook XSL Stylesheets to regenerate it.
.TH "PAM_EXEC" "8" "02/03/2006" "Linux\-PAM Manual" "Linux\-PAM Manual"
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.SH "NAME"
pam_exec \- PAM module which calls an external command
.SH "SYNOPSIS"
.HP 12
\fBpam_exec.so\fR [debug] [seteuid] [log=\fIfile\fR] \fIcommand\fR [\fI...\fR]
.SH "DESCRIPTION"
.PP
pam_exec is a PAM module that can be used to run an external command.
.SH "OPTIONS"
.PP
.TP
\fBdebug\fR
Print debug information.
.TP
\fBlog=\fR\fB\fIfile\fR\fR
The output of the command is appended to
\fIfile\fR
.TP
\fBseteuid\fR
Per default pam_exec.so will execute the external command with the real user ID of the calling process. Specifying this option means the command is run with the effective user ID.
.SH "MODULE SERVICES PROVIDED"
.PP
The services
\fBauth\fR,
\fBaccount\fR,
\fBpassword\fR
and
\fBsession\fR
are supported.
.SH "RETURN VALUES"
.PP
.TP
PAM_SUCCESS
The external command runs successfull.
.TP
PAM_SERVICE_ERR
No argument or a wrong number of arguments were given.
.TP
PAM_SYSTEM_ERR
A system error occured or the command to execute failed.
.TP
PAM_IGNORE
\fBpam_setcred\fR
was called, which does not execute the command.
.SH "EXAMPLES"
.PP
Add the following line to
\fI/etc/pam.d/passwd\fR
to rebuild the NIS database after each local password change:
.sp
.nf
        passwd optional pam_exec.so seteuid make \-C /var/yp
      
.fi
.sp
This will execute the command
.sp
.nf
make \-C /var/yp
.fi
.sp
with effective user ID.
.SH "SEE ALSO"
.PP
\fBpam.conf\fR(5),
\fBpam.d\fR(8),
\fBpam\fR(8)
.SH "AUTHOR"
.PP
pam_exec was written by Thorsten Kukuk <kukuk@thkukuk.de>.