dpkg --compare-versions mistake 3.0.0-1
authorEmmanuel Lacour <elacour@home-dn.net>
Wed, 17 Oct 2007 12:56:56 +0000 (12:56 +0000)
committerEmmanuel Lacour <elacour@home-dn.net>
Wed, 17 Oct 2007 12:56:56 +0000 (12:56 +0000)
debian/postinst

index 4643d74..f86a0d2 100644 (file)
@@ -33,7 +33,7 @@ case "$1" in
         if [ -n "$2" ]; then
             if [ -e /etc/apache2/mods-enabled/proxy_html.load ]; then
                 # We must reenable this module to enable the new configuration file
-                if dpkg --compare-versions "3.0.0-1" lt "$2" ; then
+                if dpkg --compare-versions "$2" lt "3.0.0-1" ; then
                     a2dismod proxy_html >/dev/null || true 
                     a2enmod proxy_html >/dev/null || true 
                 fi