[Pkg-mono-svn-commits] rev 3754 - mod-mono/trunk/debian

Jo Shields directhex-guest at alioth.debian.org
Wed Nov 12 01:36:09 UTC 2008


Author: directhex-guest
Date: 2008-11-12 01:36:09 +0000 (Wed, 12 Nov 2008)
New Revision: 3754

Modified:
   mod-mono/trunk/debian/changelog
   mod-mono/trunk/debian/libapache2-mod-mono.config
Log:
mod-mono 2.0!


Modified: mod-mono/trunk/debian/changelog
===================================================================
--- mod-mono/trunk/debian/changelog	2008-11-11 22:27:10 UTC (rev 3753)
+++ mod-mono/trunk/debian/changelog	2008-11-12 01:36:09 UTC (rev 3754)
@@ -1,11 +1,15 @@
-mod-mono (1.9-2) UNRELEASED; urgency=low
+mod-mono (2.0-1) UNRELEASED; urgency=low
 
-  * NOT RELEASED YET
-  * TODO: https://bugs.launchpad.net/ubuntu/+source/mod-mono/+bug/223959 needs to be checked!
+  [ Jo Shields ]
+  * New upstream release
+  * libapache2-mod-mono.config:
+    + Prevent postinst failure by ensuring mod_mono.conf always exists
+
+  [ Mirco Bauer]
   * debian/libapache2-mod-mono.conf:
     + Enhanced comments.
 
- -- Mirco Bauer <meebey at debian.org>  Tue, 08 Jul 2008 13:14:05 +0200
+ -- Jo Shields <directhex at apebox.org>  Wed, 12 Nov 2008 01:35:05 +0000
 
 mod-mono (1.9-1) unstable; urgency=low
 

Modified: mod-mono/trunk/debian/libapache2-mod-mono.config
===================================================================
--- mod-mono/trunk/debian/libapache2-mod-mono.config	2008-11-11 22:27:10 UTC (rev 3753)
+++ mod-mono/trunk/debian/libapache2-mod-mono.config	2008-11-12 01:36:09 UTC (rev 3754)
@@ -50,6 +50,12 @@
 # Change the includes as appropriate
 MONO_CONF=/etc/apache2/mods-available/mod_mono.conf
 
+# Gracefully deal with users who have deleted their config for some reason
+# (i.e. don't bail out in postinst)
+if [ ! -e "$MONO_CONF" ]; then
+    touch $MONO_CONF
+fi
+
 case "$USE_MONO_SERVER" in
     none)
 	# Can't find anything




More information about the Pkg-mono-svn-commits mailing list