Unix and Linux Discussions Tagged with make |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
1 |
5,838 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
8,621 |
Shell Programming and Scripting |
|
|
|
14 |
32,690 |
Programming |
|
|
|
2 |
5,292 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
7,992 |
UNIX for Beginners Questions & Answers |
|
|
|
24 |
13,957 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
5,908 |
UNIX for Beginners Questions & Answers |
|
|
|
9 |
36,976 |
Red Hat |
|
|
|
4 |
3,553 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
7,047 |
Shell Programming and Scripting |
|
|
|
1 |
2,200 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
4,154 |
Shell Programming and Scripting |
|
|
|
1 |
7,413 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
7,934 |
UNIX for Advanced & Expert Users |
|
|
|
21 |
10,808 |
Shell Programming and Scripting |
|
|
|
11 |
7,272 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
2,441 |
Shell Programming and Scripting |
|
|
|
12 |
6,433 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
3,785 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
9,294 |
Programming |
|
|
|
0 |
3,484 |
UNIX for Advanced & Expert Users |
|
|
|
16 |
14,518 |
Shell Programming and Scripting |
|
|
|
0 |
8,017 |
Shell Programming and Scripting |
|
|
|
1 |
4,294 |
Programming |
|
|
|
1 |
4,007 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
6,091 |
Shell Programming and Scripting |
|
|
|
3 |
4,793 |
Shell Programming and Scripting |
|
|
|
1 |
13,308 |
Shell Programming and Scripting |
|
|
|
2 |
13,773 |
UNIX for Dummies Questions & Answers |
|
|
|
8 |
11,004 |
Homework & Coursework Questions |
|
|
|
6 |
5,173 |
Shell Programming and Scripting |
|
|
|
0 |
2,796 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
6,372 |
OS X (Apple) |
|
|
|
4 |
3,635 |
Solaris |
|
|
|
6 |
5,476 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
8,907 |
Shell Programming and Scripting |
|
|
|
3 |
5,247 |
Emergency UNIX and Linux Support |
|
|
|
3 |
15,551 |
UNIX for Advanced & Expert Users |
|
|
|
5 |
8,968 |
Solaris |
|
|
|
1 |
3,251 |
UNIX for Dummies Questions & Answers |
PAM_MAKE(8) Reference Manual PAM_MAKE(8)
NAME
pam_make - PAM module which calls make
SYNOPSIS
pam_make.so [debug] [nosetuid] [make=prog] [log=file] /path/ [...]
DESCRIPTION
pam_make is a PAM module that can be used to run make in a given directory.
OPTIONS
debug
Print debug information.
log=file
The output of make is appended to file
nosetuid
Per default pam_make.so will execute make with the effective user ID of the calling process. Specifying this option means make is run
with the real user ID.
make=prog
The command prog is used instead of make.
MODULE SERVICES PROVIDED
The services auth, account, password and session are supported.
RETURN VALUES
PAM_SUCCESS
The make command runs successfull.
PAM_SERVICE_ERR
No argument or a wrong number of arguments were given.
PAM_SYSTEM_ERR
A system error occured or the make command failed.
PAM_IGNORE
pam_setcred was called, which does not execute the make command.
EXAMPLES
Add the following line to /etc/pam.d/passwd to rebuild the NIS database after each local password change:
passwd optional pam_make.so /var/yp
This will execute the command:
make -C /var/yp
HISTORY
The first implementation of pam_make was written by Mihai Ibanescu <misa@dntis.ro>.
SEE ALSO
pam.conf(5), pam.d(8), pam(8)
AUTHOR
pam_make was written by Thorsten Kukuk <kukuk@thkukuk.de>.
Reference Manual 10/25/2006 PAM_MAKE(8)