[Pkg-voip-commits] r8040 - in /mumble-django/trunk/debian: changelog mumble-django.postrm

svedrin-guest at alioth.debian.org svedrin-guest at alioth.debian.org
Tue Feb 9 16:59:41 UTC 2010


Author: svedrin-guest
Date: Tue Feb  9 16:59:41 2010
New Revision: 8040

URL: http://svn.debian.org/wsvn/pkg-voip/?sc=1&rev=8040
Log:
Add check if apache2 init script exists before trying to invoke it in postrm.

Modified:
    mumble-django/trunk/debian/changelog
    mumble-django/trunk/debian/mumble-django.postrm

Modified: mumble-django/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-voip/mumble-django/trunk/debian/changelog?rev=8040&op=diff
==============================================================================
--- mumble-django/trunk/debian/changelog (original)
+++ mumble-django/trunk/debian/changelog Tue Feb  9 16:59:41 2010
@@ -3,8 +3,9 @@
   * New upstream release.
   * Remove modification of SLICE_VERSION as it is not necessary anymore.
   * Update patches/01-settings.diff to reflect the new settings.py layout.
+  * Add check if apache2 init script exists before trying to invoke it in postrm.
 
- -- Michael Ziegler <diese-addy at funzt-halt.net>  Tue, 09 Feb 2010 15:58:31 +0100
+ -- Michael Ziegler <diese-addy at funzt-halt.net>  Tue, 09 Feb 2010 17:59:08 +0100
 
 mumble-django (1.2-2) unstable; urgency=medium
 

Modified: mumble-django/trunk/debian/mumble-django.postrm
URL: http://svn.debian.org/wsvn/pkg-voip/mumble-django/trunk/debian/mumble-django.postrm?rev=8040&op=diff
==============================================================================
--- mumble-django/trunk/debian/mumble-django.postrm (original)
+++ mumble-django/trunk/debian/mumble-django.postrm Tue Feb  9 16:59:41 2010
@@ -2,7 +2,7 @@
 
 set -e
 
-if [ -x "`which invoke-rc.d 2>/dev/null`" ] ; then
+if [ -x "`which invoke-rc.d 2>/dev/null`" -a -x "/etc/init.d/apache2" ] ; then
 	invoke-rc.d --quiet apache2 reload
 fi
 




More information about the Pkg-voip-commits mailing list