diff options
author | Petter Reinholdtsen <pere@hungry.com> | 2016-02-20 15:21:41 +0100 |
---|---|---|
committer | Petter Reinholdtsen <pere@hungry.com> | 2016-02-20 15:21:41 +0100 |
commit | 42b05b30f9f04d2af5827a5aae5b0666da515cc9 (patch) | |
tree | 8018b7c2d6f633285c9d3f114b7163e65bec174b /debian | |
parent | bdd899a818813409119c695c35871fcb3fbee30b (diff) | |
download | sitesummary-42b05b30f9f04d2af5827a5aae5b0666da515cc9.tar.gz sitesummary-42b05b30f9f04d2af5827a5aae5b0666da515cc9.tar.bz2 sitesummary-42b05b30f9f04d2af5827a5aae5b0666da515cc9.tar.xz |
Correct comment in prerm script.
Diffstat (limited to 'debian')
-rw-r--r-- | debian/sitesummary.prerm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/debian/sitesummary.prerm b/debian/sitesummary.prerm index 1d1a181..dd54993 100644 --- a/debian/sitesummary.prerm +++ b/debian/sitesummary.prerm @@ -4,9 +4,8 @@ set -e case "$1" in remove) - # Enable it on fresh installations as before Apache 2.4. Check for - # cgi.load existence to avoid trying to configure when installed after - # apache2 is unpacked but not yet configured (bug #760084). + # Disable configuration if Apache 2.4 is installed, to avoid + # breaking Apache due to a danling symlink (Bug #785215). if [ -z "$2" ] && \ [ -e /usr/share/apache2/apache2-maintscript-helper ] ; then . /usr/share/apache2/apache2-maintscript-helper |