Comment 15 for bug 576255

Revision history for this message
Thomas Antepoth (ta-ubuntu-antepoth) wrote :

Patched my /var/lib/dpkg/info/apache2.2-common.postinst at line 77 in this way:

# Note, this line catches new installs as well as upgrades
if dpkg --compare-versions "$2" lt 2.2.15-1~0; then
        a2enmod -q reqtimeout
fi

to:
# Note, this line catches new installs as well as upgrades
if dpkg --compare-versions "$2" lt 2.2.15-1~0; then
        echo "a2enmod -q reqtimeout"
fi

After that I ran:

apt-get install
Paketlisten werden gelesen... Fertig
Abhängigkeitsbaum wird aufgebaut
Status-Informationen einlesen... Fertig
0 aktualisiert, 0 neu installiert, 0 zu entfernen und 0 nicht aktualisiert.
3 nicht vollständig installiert oder entfernt.
Nach dieser Operation werden 0B Plattenplatz zusätzlich benutzt.
Richte apache2.2-common ein (2.2.14-5ubuntu8.2) ...
a2enmod -q reqtimeout

Richte apache2-mpm-prefork ein (2.2.14-5ubuntu8.2) ...
 * Starting web server apache2 apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
[Tue Aug 24 06:12:39 2010] [warn] NameVirtualHost *:80 has no VirtualHosts
httpd (pid 2199) already running
                                                                                                                                                                                                   [ OK ]

Richte apache2 ein (2.2.14-5ubuntu8.2) ...

and was up and running again.