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:22:40 +0100 |
commit | 41687c56c57fe39a61b8794fc074aba7add54387 (patch) | |
tree | 486d973dce3aa78560e8b887d974013da87393d7 | |
parent | cf78de37746895b99a3b146ef8609a292b67c9a5 (diff) | |
download | sitesummary-41687c56c57fe39a61b8794fc074aba7add54387.tar.gz sitesummary-41687c56c57fe39a61b8794fc074aba7add54387.tar.bz2 sitesummary-41687c56c57fe39a61b8794fc074aba7add54387.tar.xz |
Correct comment in prerm script.
-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 62eb441..dec1cc6 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 |