[Pkg-nagios-changes] [pkg-nagios] r1624 - nagios3/trunk/debian

Alexander Wirt formorer at alioth.debian.org
Thu Mar 12 06:26:13 UTC 2009


tags 495236 pending
thanks

Author: formorer
Date: 2009-03-12 06:26:13 +0000 (Thu, 12 Mar 2009)
New Revision: 1624

Modified:
   nagios3/trunk/debian/changelog
   nagios3/trunk/debian/nagios3-common.nagios3.init
Log:
Remove rw pipe if it is a file 


Modified: nagios3/trunk/debian/changelog
===================================================================
--- nagios3/trunk/debian/changelog	2009-03-12 06:20:04 UTC (rev 1623)
+++ nagios3/trunk/debian/changelog	2009-03-12 06:26:13 UTC (rev 1624)
@@ -6,8 +6,9 @@
     Depend on ucf >= for this "feature" (Closes: #513905, #515289)
   * Do not fail if apache include file has been removed by the user 
     (Closes: #515260)
+  * Remove rw pipe even if it is a file (Closes: #495236) 
 
- -- Alexander Wirt <formorer at debian.org>  Thu, 12 Mar 2009 06:22:26 +0100
+ -- Alexander Wirt <formorer at debian.org>  Thu, 12 Mar 2009 07:25:17 +0100
 
 nagios3 (3.0.6-3) unstable; urgency=low
 

Modified: nagios3/trunk/debian/nagios3-common.nagios3.init
===================================================================
--- nagios3/trunk/debian/nagios3-common.nagios3.init	2009-03-12 06:20:04 UTC (rev 1623)
+++ nagios3/trunk/debian/nagios3-common.nagios3.init	2009-03-12 06:26:13 UTC (rev 1624)
@@ -104,6 +104,8 @@
   nagiospipe="$(get_config command_file)"
   if [ -p "$nagiospipe" ]; then
     return 1   # a named pipe exists
+  elif [ -e "$nagiospipe" ];then
+    return 1
   else
     return 0   # no named pipe exists
   fi




More information about the Pkg-nagios-changes mailing list