summaryrefslogtreecommitdiff
path: root/modules/pam_exec/README
diff options
context:
space:
mode:
authorThorsten Kukuk <kukuk@thkukuk.de>2006-01-24 16:02:11 +0000
committerThorsten Kukuk <kukuk@thkukuk.de>2006-01-24 16:02:11 +0000
commitc14d282c2a5fefbf7060d05b9d1910b359a1566f (patch)
tree8f6b2a2f2d2d4ac3462bf95487e9fde2d973e454 /modules/pam_exec/README
parentfe200c2c6b75da02f6367c1d63d40b2304ed71d4 (diff)
CVS: Indicate any relevant BUGIDs here
Relevant BUGIDs: Purpose of commit: new feature Commit summary: --------------- 2006-01-24 Thorsten Kukuk <kukuk@thkukuk.de> * configure.in: Add modules/pam_exec. * modules/Makefile.am: Add pam_exec subdirectory. * modules/pam_exec/README: New. * modules/pam_exec/Makefile.am: New. * modules/pam_exec/pam_exec.8: New. * modules/pam_exec/pam_exec.c: New. * modules/pam_exec/pam_exec.8.xml: New. * po/POTFILES.in: Add modules/pam_exec/pam_exec.c. * po/*.po: Merge new pam_exec strings.
Diffstat (limited to 'modules/pam_exec/README')
-rw-r--r--modules/pam_exec/README29
1 files changed, 29 insertions, 0 deletions
diff --git a/modules/pam_exec/README b/modules/pam_exec/README
new file mode 100644
index 00000000..8451ef03
--- /dev/null
+++ b/modules/pam_exec/README
@@ -0,0 +1,29 @@
+
+pam_exec module:
+ Call <prog> <arguments>
+
+
+USAGE:
+ For the services you wish to run a program put the following
+ line in the config as the last line for that service:
+
+ <type> required pam_exec.so [options] /path/prog ...
+
+ and pam_exec.so will run "/path/prog ...".
+
+
+OPTIONS:
+
+ debug print debug informations
+
+ seteuid pam_exec.so will call setuid(seteuid()), so that
+ the program will run with the same rights as the
+ calling applications (effective user ID). The
+ default is that the program will be run with the
+ permissions of the calling user (real user ID).
+
+ log=<file> the output is appended to this file.
+
+
+AUTHOR:
+ Thorsten Kukuk <kukuk@thkukuk.de>