summaryrefslogtreecommitdiff
path: root/debian/apache2.postinst
diff options
context:
space:
mode:
authorArno Töll <debian@toell.net>2012-01-09 20:22:00 +0100
committerArno Töll <debian@toell.net>2012-01-09 20:22:48 +0100
commit227565c652d19df96efa75c2f785ea4dabe91223 (patch)
treebb06c8d1140176659c6816faa3f59e1bb504e49e /debian/apache2.postinst
parentc5af54a0e8026d949c5331dafbc69653009c2041 (diff)
downloadapache2-227565c652d19df96efa75c2f785ea4dabe91223.tar.gz
Rename old debhelper configuration files making room for shiny new stuff. Let's
sort out later what is still usable. Ditto for patches.
Diffstat (limited to 'debian/apache2.postinst')
-rw-r--r--debian/apache2.postinst20
1 files changed, 0 insertions, 20 deletions
diff --git a/debian/apache2.postinst b/debian/apache2.postinst
deleted file mode 100644
index 1dc45eac..00000000
--- a/debian/apache2.postinst
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-set -e
-
-if [ "$1" != "configure" ]; then
- exit 0
-fi
-
-# postinst for apache2, apache2-prefork-dev, apache2-threaded-dev
-
-P=apache2
-if dpkg --compare-versions "$2" lt 2.2.11-5~ ; then
- DOCDIR=/usr/share/doc/$P
- if [ ! -h $DOCDIR -a -d $DOCDIR ] ; then
- rmdir $DOCDIR 2> /dev/null && ln -s apache2.2-common $DOCDIR
- fi
-fi
-
-#DEBHELPER#
-
-exit 0