[Python-modules-commits] r11494 - in packages/mod-wsgi/trunk/debian (3 files)

piotr at users.alioth.debian.org piotr at users.alioth.debian.org
Mon Feb 1 22:56:21 UTC 2010


    Date: Monday, February 1, 2010 @ 22:56:18
  Author: piotr
Revision: 11494

sync with 2.8-2 upload

Modified:
  packages/mod-wsgi/trunk/debian/changelog
  packages/mod-wsgi/trunk/debian/control
  packages/mod-wsgi/trunk/debian/libapache2-mod-wsgi.postinst

Modified: packages/mod-wsgi/trunk/debian/changelog
===================================================================
--- packages/mod-wsgi/trunk/debian/changelog	2010-02-01 21:28:47 UTC (rev 11493)
+++ packages/mod-wsgi/trunk/debian/changelog	2010-02-01 22:56:18 UTC (rev 11494)
@@ -1,10 +1,18 @@
 mod-wsgi (3.1-2) UNRELEASED; urgency=low
 
   * NOT RELEASED YET
-  * mod-wsgi should be in section httpd. 
 
  -- Bernd Zeimetz <bzed at debian.org>  Sat, 19 Dec 2009 13:45:05 +0100
 
+mod-wsgi (2.8-2) unstable; urgency=low
+
+  * Restart Apache instead of reloading config file in postinst (temporary
+    workaround for bug #558608)
+  * Section changed to "httpd"
+  * Bump Standards-Version to 3.8.4 (no changes needed)
+
+ -- Piotr Ożarowski <piotr at debian.org>  Mon, 01 Feb 2010 21:03:25 +0100
+
 mod-wsgi (3.1-1) experimental; urgency=low
 
   * New upstream release.

Modified: packages/mod-wsgi/trunk/debian/control
===================================================================
--- packages/mod-wsgi/trunk/debian/control	2010-02-01 21:28:47 UTC (rev 11493)
+++ packages/mod-wsgi/trunk/debian/control	2010-02-01 22:56:18 UTC (rev 11494)
@@ -5,7 +5,7 @@
 Uploaders: Bernd Zeimetz <bzed at debian.org>, Piotr Ożarowski <piotr at debian.org>
 Build-Depends: debhelper (>= 5), python-all-dev, apache2-threaded-dev
 Homepage: http://www.modwsgi.org/
-Standards-Version: 3.8.3
+Standards-Version: 3.8.4
 Vcs-Svn: svn://svn.debian.org/python-modules/packages/mod-wsgi/trunk/
 Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/mod-wsgi/trunk/
 

Modified: packages/mod-wsgi/trunk/debian/libapache2-mod-wsgi.postinst
===================================================================
--- packages/mod-wsgi/trunk/debian/libapache2-mod-wsgi.postinst	2010-02-01 21:28:47 UTC (rev 11493)
+++ packages/mod-wsgi/trunk/debian/libapache2-mod-wsgi.postinst	2010-02-01 22:56:18 UTC (rev 11494)
@@ -4,7 +4,9 @@
 
 apache_force_reload() {
     if apache2ctl configtest 2>/dev/null; then
-        invoke-rc.d apache2 force-reload || true
+        #invoke-rc.d apache2 force-reload || true
+        # use "restart" as a workaround for bug #558608
+        invoke-rc.d apache2 restart || true
     else
         echo "Your apache2 configuration is broken, please fix it and restart apache2 manually."
     fi




More information about the Python-modules-commits mailing list