diff options
author | Thorsten Kukuk <kukuk@thkukuk.de> | 2013-09-04 16:40:37 +0200 |
---|---|---|
committer | Thorsten Kukuk <kukuk@thkukuk.de> | 2013-09-04 16:40:37 +0200 |
commit | fbd7a2c8e9e3e7b10ba408b28f286cbdeccc5691 (patch) | |
tree | 468db0169bbbd1682700564fc097752fe9238473 /modules/pam_exec/pam_exec.8.xml | |
parent | f11cd89316cc051e23ef080aee5c7d823c6dfce2 (diff) | |
download | pam-fbd7a2c8e9e3e7b10ba408b28f286cbdeccc5691.tar.gz pam-fbd7a2c8e9e3e7b10ba408b28f286cbdeccc5691.tar.bz2 pam-fbd7a2c8e9e3e7b10ba408b28f286cbdeccc5691.zip |
Extend pam_exec by stdout and type= options (ticket #8):
* modules/pam_exec/pam_exec.c: Add stdout and type= option
* modules/pam_exec/pam_exec.8.xml: Document new options
Diffstat (limited to 'modules/pam_exec/pam_exec.8.xml')
-rw-r--r-- | modules/pam_exec/pam_exec.8.xml | 34 |
1 files changed, 32 insertions, 2 deletions
diff --git a/modules/pam_exec/pam_exec.8.xml b/modules/pam_exec/pam_exec.8.xml index 4dc2a19d..23793668 100644 --- a/modules/pam_exec/pam_exec.8.xml +++ b/modules/pam_exec/pam_exec.8.xml @@ -31,8 +31,14 @@ quiet </arg> <arg choice="opt"> + stdout + </arg> + <arg choice="opt"> log=<replaceable>file</replaceable> </arg> + <arg choice="opt"> + type=<replaceable>type</replaceable> + </arg> <arg choice="plain"> <replaceable>command</replaceable> </arg> @@ -119,6 +125,28 @@ <varlistentry> <term> + <option>type=<replaceable>type</replaceable></option> + </term> + <listitem> + <para> + Only run the command if the module type matches the given type. + </para> + </listitem> + </varlistentry> + + <varlistentry> + <term> + <option>stdout</option> + </term> + <listitem> + <para> + Per default the output of the executed command is written to <filename>/dev/null</filename>. With this option, the stdout output of the executed command is redirected to the calling application. It's in the responsibility of this application what happens with the output. The <option>log</option> option is ignored. + </para> + </listitem> + </varlistentry> + + <varlistentry> + <term> <option>quiet</option> </term> <listitem> @@ -194,7 +222,8 @@ <listitem> <para> <function>pam_setcred</function> was called, which - does not execute the command. + does not execute the command. Or, the value given for the type= + parameter did not match the module type. </para> </listitem> </varlistentry> @@ -236,7 +265,8 @@ <refsect1 id='pam_exec-author'> <title>AUTHOR</title> <para> - pam_exec was written by Thorsten Kukuk <kukuk@thkukuk.de>. + pam_exec was written by Thorsten Kukuk <kukuk@thkukuk.de> and + Josh Triplett <josh@joshtriplett.org>. </para> </refsect1> |