Unix and Linux Discussions Tagged with make |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
1 |
2,735 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
4,903 |
Shell Programming and Scripting |
|
|
|
14 |
10,298 |
Programming |
|
|
|
2 |
2,259 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
3,296 |
UNIX for Beginners Questions & Answers |
|
|
|
24 |
2,885 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
1,795 |
UNIX for Beginners Questions & Answers |
|
|
|
9 |
20,847 |
Red Hat |
|
|
|
4 |
2,064 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
4,600 |
Shell Programming and Scripting |
|
|
|
1 |
1,093 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
2,002 |
Shell Programming and Scripting |
|
|
|
1 |
4,331 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
4,105 |
UNIX for Advanced & Expert Users |
|
|
|
21 |
4,978 |
Shell Programming and Scripting |
|
|
|
11 |
3,328 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
1,471 |
Shell Programming and Scripting |
|
|
|
12 |
4,297 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
2,170 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
6,862 |
Programming |
|
|
|
0 |
2,271 |
UNIX for Advanced & Expert Users |
|
|
|
16 |
5,809 |
Shell Programming and Scripting |
|
|
|
0 |
5,589 |
Shell Programming and Scripting |
|
|
|
1 |
2,460 |
Programming |
|
|
|
1 |
2,550 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
3,619 |
Shell Programming and Scripting |
|
|
|
3 |
1,802 |
Shell Programming and Scripting |
|
|
|
1 |
9,525 |
Shell Programming and Scripting |
|
|
|
2 |
10,747 |
UNIX for Dummies Questions & Answers |
|
|
|
8 |
7,665 |
Homework & Coursework Questions |
|
|
|
6 |
3,807 |
Shell Programming and Scripting |
|
|
|
0 |
2,155 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
4,417 |
OS X (Apple) |
|
|
|
4 |
2,720 |
Solaris |
|
|
|
6 |
3,904 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
6,716 |
Shell Programming and Scripting |
|
|
|
3 |
3,719 |
Emergency UNIX and Linux Support |
|
|
|
3 |
14,170 |
UNIX for Advanced & Expert Users |
|
|
|
5 |
7,567 |
Solaris |
|
|
|
1 |
2,406 |
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)