[Pkg-nagios-changes] [pkg-nagios] r873 - nagios2/trunk/debian
Marc Haber
zugschlus at costa.debian.org
Fri Mar 31 09:58:06 UTC 2006
Author: zugschlus
Date: 2006-03-31 09:58:05 +0000 (Fri, 31 Mar 2006)
New Revision: 873
Modified:
nagios2/trunk/debian/changelog
nagios2/trunk/debian/nagios2.prerm
Log:
* nagios2.prerm: replace "|| exit 0" with "|| true" (see #337664,
but we had the offending code in the script verbatim)
Modified: nagios2/trunk/debian/changelog
===================================================================
--- nagios2/trunk/debian/changelog 2006-03-31 09:46:51 UTC (rev 872)
+++ nagios2/trunk/debian/changelog 2006-03-31 09:58:05 UTC (rev 873)
@@ -1,8 +1,10 @@
nagios2 (2.1-1) unstable; urgency=low
* new upstream version
+ * nagios2.prerm: replace "|| exit 0" with "|| true" (see #337664,
+ but we had the offending code in the script verbatim)
- -- Marc Haber <mh+debian-packages at zugschlus.de> Fri, 31 Mar 2006 09:46:17 +0000
+ -- Marc Haber <mh+debian-packages at zugschlus.de> Fri, 31 Mar 2006 09:56:57 +0000
nagios2 (2.0-1) unstable; urgency=low
Modified: nagios2/trunk/debian/nagios2.prerm
===================================================================
--- nagios2/trunk/debian/nagios2.prerm 2006-03-31 09:46:51 UTC (rev 872)
+++ nagios2/trunk/debian/nagios2.prerm 2006-03-31 09:58:05 UTC (rev 873)
@@ -7,9 +7,9 @@
# the binary.
if [ -x "/etc/init.d/nagios2" ]; then
if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
- invoke-rc.d nagios2 stop || exit 0
+ invoke-rc.d nagios2 stop || true
else
- /etc/init.d/nagios2 stop || exit 0
+ /etc/init.d/nagios2 stop || true
fi
fi
More information about the Pkg-nagios-changes
mailing list