Unix and Linux Discussions Tagged with issue |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
30 |
73,360 |
Programming |
|
|
|
3 |
20,235 |
Answers to Frequently Asked Questions |
|
|
|
2 |
5,698 |
UNIX for Beginners Questions & Answers |
|
|
|
9 |
118,771 |
Shell Programming and Scripting |
|
|
|
5 |
25,269 |
Solaris |
|
|
|
8 |
5,266 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
22,849 |
Solaris |
|
|
|
4 |
10,805 |
Linux |
|
|
|
6 |
9,444 |
Shell Programming and Scripting |
|
|
|
23 |
10,295 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
4,160 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
3,563 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
17,472 |
AIX |
|
|
|
4 |
2,457 |
UNIX for Beginners Questions & Answers |
|
|
|
10 |
11,742 |
Shell Programming and Scripting |
|
|
|
1 |
4,467 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
3,207 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
13,529 |
Programming |
|
|
|
6 |
4,442 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
6,286 |
Shell Programming and Scripting |
|
|
|
2 |
5,494 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
6,238 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
31,428 |
Solaris |
|
|
|
1 |
3,459 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
3,313 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
2,628 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
15,764 |
Linux |
|
|
|
1 |
1,881 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
9,052 |
Web Development |
|
|
|
13 |
3,367 |
Shell Programming and Scripting |
|
|
|
6 |
2,839 |
UNIX for Beginners Questions & Answers |
|
|
|
10 |
10,431 |
Shell Programming and Scripting |
|
|
|
4 |
5,240 |
Shell Programming and Scripting |
|
|
|
1 |
13,376 |
Red Hat |
|
|
|
3 |
2,287 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
7,891 |
Web Development |
|
|
|
3 |
3,541 |
Shell Programming and Scripting |
|
|
|
4 |
7,801 |
What is on Your Mind? |
|
|
|
8 |
7,954 |
UNIX for Advanced & Expert Users |
|
|
|
16 |
29,403 |
UNIX for Advanced & Expert Users |
PAM_ISSUE(8) Linux-PAM Manual PAM_ISSUE(8)
NAME
pam_issue - PAM module to add issue file to user prompt
SYNOPSIS
pam_issue.so [noesc] [issue=issue-file-name]
DESCRIPTION
pam_issue is a PAM module to prepend an issue file to the username prompt. It also by default parses escape codes in the issue file similar
to some common getty's (using x format).
Recognized escapes:
d
current day
l
name of this tty
m
machine architecture (uname -m)
machine's network node hostname (uname -n)
o
domain name of this system
release number of operating system (uname -r)
current time
s
operating system name (uname -s)
u
number of users currently logged in
U
same as u except it is suffixed with "user" or "users" (eg. "1 user" or "10 users")
v
operating system version and build date (uname -v)
OPTIONS
noesc
Turns off escape code parsing.
issue=issue-file-name
The file to output if not using the default.
MODULE TYPES PROVIDED
Only the auth module type is provided.
RETURN VALUES
PAM_BUF_ERR
Memory buffer error.
PAM_IGNORE
The prompt was already changed.
PAM_SERVICE_ERR
A service module error occurred.
PAM_SUCCESS
The new prompt was set successfully.
EXAMPLES
Add the following line to /etc/pam.d/login to set the user specific issue at login:
auth optional pam_issue.so issue=/etc/issue
SEE ALSO
pam.conf(5), pam.d(5), pam(7)
AUTHOR
pam_issue was written by Ben Collins <bcollins@debian.org>.
Linux-PAM Manual 06/04/2011 PAM_ISSUE(8)