diff options
author | Sergey Poznyakoff <gray@gnu.org.ua> | 2011-10-24 00:34:39 +0300 |
---|---|---|
committer | Sergey Poznyakoff <gray@gnu.org.ua> | 2011-10-24 00:36:25 +0300 |
commit | e839f7c7d4d8fe3cba672b47b7636de7d9df2ee6 (patch) | |
tree | 774d8f69927cb615ab0a76a87662bb0eefe82bd3 | |
parent | 2642cac5ca8084b4f1f9033afb90b6a7ee6b95fd (diff) | |
download | pies-e839f7c7d4d8fe3cba672b47b7636de7d9df2ee6.tar.gz pies-e839f7c7d4d8fe3cba672b47b7636de7d9df2ee6.tar.bz2 |
Document siggroup flag.
-rw-r--r-- | NEWS | 8 | ||||
-rw-r--r-- | doc/pies.texi | 9 |
2 files changed, 16 insertions, 1 deletions
@@ -1,15 +1,21 @@ -GNU Pies NEWS -- history of user-visible changes. 2011-10-23 +GNU Pies NEWS -- history of user-visible changes. 2011-10-24 Copyright (C) 2009, 2010, 2011 Sergey Poznyakoff See the end of file for copying conditions. Please send Pies bug reports to <bug-pies@gnu.org> or <bug-pies@gnu.org.ua> Version 1.2.90 (Git) + +* New flag siggroup. + +This flag instructs pies to send termination signal to the process +group of the process being stopped. + Version 1.2, 2009-12-11 * First release as a GNU package. * Full inetd support diff --git a/doc/pies.texi b/doc/pies.texi index a77e4cf..e97eb4d 100644 --- a/doc/pies.texi +++ b/doc/pies.texi @@ -679,12 +679,20 @@ This inetd component wants socket description variables in its environment. @xref{sockenv}. @item resolve When used with @samp{sockenv}, the @env{LOCALHOST} and @env{REMOTEHOST} environment variables will contain resolved host names, instead of IP addresses. + +@item siggroup +This flag affects the befavior of @command{pies} when a stopped +process fails to terminate within a predefined timeout +(@pxref{shutdown-timeout}. Normally @command{pies} would send the +@samp{SIGKILL} signal to such a process. If this flag is set, +@command{pies} would send @samp{SIGKILL} to the process group of this +process instead. @end table @end deffn @deffn {Config: component} acl @{ @dots{} @} Set access control list for this component. @xref{ACL}, for a detailed description of access control lists. @@ -2017,12 +2025,13 @@ limits}, for a detailed description of @var{arg}. @deffn {Config} return-code @{ @dots{} @} Configure global exit actions. @xref{Exit Actions}, for a detailed description of this statement. @end deffn +@anchor{shutdown-timeout} @deffn {Config} shutdown-timeout @var{number}; Wait @var{number} of seconds for all components to shut down. Default is 5 seconds. @end deffn @node Pies Privileges |