Code

collection4.postinst: Fixed syntax error. master
authorSebastian Harl <sh@tokkee.org>
Sat, 4 Jun 2011 22:05:24 +0000 (00:05 +0200)
committerSebastian Harl <sh@tokkee.org>
Sat, 4 Jun 2011 22:05:24 +0000 (00:05 +0200)
Missing '\' at end of line.

debian/collection4.postinst

index afa35e520333aba416ddb032e1a8ad7b4842bf43..81d91a5c04a3396b91f2e8bdee17f9d2c028039a 100644 (file)
@@ -30,11 +30,11 @@ configure_apache2() {
        fi
 
        if [ -d /etc/apache2/mods-enabled ]; then
-               if [ ! -e /etc/apache2/mods-enabled/fcgid.load -a
+               if [ ! -e /etc/apache2/mods-enabled/fcgid.load -a \
                                -e /etc/apache2/mods-available/fcgid.load ]; then
                        a2enmod fcgid
                        a2reload="true"
-               else if [ ! -e /etc/apache2/mods-enabled/fastcgi.load -a
+               else if [ ! -e /etc/apache2/mods-enabled/fastcgi.load -a \
                                -e /etc/apache2/mods-available/fastcgi.load ]; then
                        a2enmod fastcgi
                        a2reload="true"