diff options
author | Thorsten Kukuk <kukuk@thkukuk.de> | 2005-09-20 11:56:54 +0000 |
---|---|---|
committer | Thorsten Kukuk <kukuk@thkukuk.de> | 2005-09-20 11:56:54 +0000 |
commit | 0c3724a3e14b7c95f47f2f083ebc5c00dd5c2afe (patch) | |
tree | da7388b27ba270b7fbb63d8defcf3316d3366455 /modules/pam_echo/pam_echo.8 | |
parent | cff33b6413b03978d6289542f9aec790f0785783 (diff) | |
download | pam-0c3724a3e14b7c95f47f2f083ebc5c00dd5c2afe.tar.gz pam-0c3724a3e14b7c95f47f2f083ebc5c00dd5c2afe.tar.bz2 pam-0c3724a3e14b7c95f47f2f083ebc5c00dd5c2afe.zip |
Relevant BUGIDs: none
Purpose of commit: new feature
Commit summary:
---------------
Add pam_echo module
Diffstat (limited to 'modules/pam_echo/pam_echo.8')
-rw-r--r-- | modules/pam_echo/pam_echo.8 | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/modules/pam_echo/pam_echo.8 b/modules/pam_echo/pam_echo.8 new file mode 100644 index 00000000..6834ae01 --- /dev/null +++ b/modules/pam_echo/pam_echo.8 @@ -0,0 +1,52 @@ +.\" -*- nroff -*- +.\" Copyright (c) 2005 Thorsten Kukuk kukuk@suse.de +.\" +.TH pam_echo 8 "September 2005" "pam_echo" "Reference Manual" +.SH NAME +pam_echo - PAM module for printing text messages +.SH DESCRIPTION +The +.B pam_echo +PAM module is for printing text messages to inform user about +special things. Sequences starting with the +.B % +character are interpreted in the following way: +.TP +.B %H +The name of the remote host (PAM_RHOST). +.TP +.B %h +The name of the local host. +.TP +.B %s +The service name (PAM_SERVICE). +.TP +.B %t +The name of the controlling terminal (PAM_TTY). +.TP +.B %U +The remote user name (PAM_RUSER). +.TP +.B %u +The local user name (PAM_USER). +.PP +All other sequences beginning with +.B % +expands to the characters following the +.B % +character. +.SH OPTIONS +The following options may be passed to all types of management +groups: +.TP +.BR "file=" "message" +.B pam_echo +will print the content of the file +.B message +with the PAM conversion function as PAM_TEXT_INFO. +.SH "SEE ALSO" +.BR pam.conf (8), +.BR pam.d (8), +.BR pam (8) +.SH AUTHOR +Thorsten Kukuk <kukuk@suse.de> |