[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

r323 - in /trunk/apache2: a2-scripts/a2enmod changelog



Author: sf
Date: Mon Jun  4 21:32:51 2007
New Revision: 323

URL: http://svn.debian.org/wsvn/pkg-apache/?sc=1&rev=323
Log:
Improve handling of empty  in a2enmod

Modified:
    trunk/apache2/a2-scripts/a2enmod
    trunk/apache2/changelog

Modified: trunk/apache2/a2-scripts/a2enmod
URL: http://svn.debian.org/wsvn/pkg-apache/trunk/apache2/a2-scripts/a2enmod?rev=323&op=diff
==============================================================================
--- trunk/apache2/a2-scripts/a2enmod (original)
+++ trunk/apache2/a2-scripts/a2enmod Mon Jun  4 21:32:51 2007
@@ -18,7 +18,7 @@
 	PREFORK=`/usr/sbin/apache2 -l | grep prefork || true`
 fi
 
-if [ $MODNAME = "cgi" ] && [ -z $PREFORK ]; then
+if [ "$MODNAME" = "cgi" ] && [ -z $PREFORK ]; then
 	MODNAME="cgid"
 fi
 

Modified: trunk/apache2/changelog
URL: http://svn.debian.org/wsvn/pkg-apache/trunk/apache2/changelog?rev=323&op=diff
==============================================================================
--- trunk/apache2/changelog (original)
+++ trunk/apache2/changelog Mon Jun  4 21:32:51 2007
@@ -33,6 +33,7 @@
   * Add Build-Depends: libssl-dev, zlib1g-dev (Closes: #399043)
   * Add XS-Vcs-* to debian/control
   * Change 000-default to default in postinst
+  * Improve handling of empty $MODNAME in a2enmod (Closes: #422589)
 
  -- Thom May <thom@debian.org>  Sat, 28 Apr 2007 11:32:14 +0200
 



Reply to: