INN commit: trunk (CONTRIBUTORS doc/pod/news.pod scripts/innwatch.in)

INN Commit rra at isc.org
Sat Aug 9 10:30:38 UTC 2014


    Date: Saturday, August 9, 2014 @ 03:30:37
  Author: iulius
Revision: 9650

innwatch:  no longer creates a child process for sleeping

innwatch creates a child process only for sleeping and then waits on
that process.  The forked-off process is not killed by 'rc.news stop'
(only its parent is), and will only die after it's done sleeping.
If running under SMF on illumos/Solaris, this causes the service to
likely drop into maintenance state (since not all processes die within
timeout).

Thanks to Lauri Tirkkonen for the patch.

Modified:
  trunk/CONTRIBUTORS
  trunk/doc/pod/news.pod
  trunk/scripts/innwatch.in

---------------------+
 CONTRIBUTORS        |    2 +-
 doc/pod/news.pod    |   15 +++++++++++++++
 scripts/innwatch.in |    3 ++-
 3 files changed, 18 insertions(+), 2 deletions(-)

Modified: CONTRIBUTORS
===================================================================
--- CONTRIBUTORS	2014-07-26 07:32:03 UTC (rev 9649)
+++ CONTRIBUTORS	2014-08-09 10:30:37 UTC (rev 9650)
@@ -276,4 +276,4 @@
 Edmund H. Ramm, Raphael Barrois, Bo Lindbergh, Matthias Meyser,
 Dennis Preiser, Paolo Amoroso, Dennis Davis, River Tarnell, Jochen Schmitt,
 Tim Fardell, Remco Rijnders, David Binderman, Tony Evans, Christian Garbs,
-Jesse Rehmer, Colin Watson
+Jesse Rehmer, Colin Watson, Lauri Tirkkonen

Modified: doc/pod/news.pod
===================================================================
--- doc/pod/news.pod	2014-07-26 07:32:03 UTC (rev 9649)
+++ doc/pod/news.pod	2014-08-09 10:30:37 UTC (rev 9650)
@@ -170,6 +170,21 @@
 
 =back
 
+=head1 Changes in 2.5.5
+
+=over 2
+
+=item *
+
+B<innwatch> no longer creates a child process only for sleeping and then
+waits on that process.  The forked-off process only died after it had
+done sleeping, which caused the INN service to drop into maintenance
+state when for instance running under SMF on illumos/Solaris (since
+not all processes die within timeout).  Thanks to Lauri Tirkkonen for
+the patch.
+
+=back
+
 =head1 Changes in 2.5.4
 
 =over 2

Modified: scripts/innwatch.in
===================================================================
--- scripts/innwatch.in	2014-07-26 07:32:03 UTC (rev 9649)
+++ scripts/innwatch.in	2014-08-09 10:30:37 UTC (rev 9650)
@@ -126,7 +126,8 @@
 NEXTSLEEP=1
 HASEXITED=false
 
-while { sleep ${NEXTSLEEP} & wait; } ; : ; do
+while sleep ${NEXTSLEEP}
+do
     NEXTSLEEP=${INNWATCHSLEEPTIME}
 
     ##  If news.daily is running, idle:  we don't want to change the



More information about the inn-committers mailing list