Fix log rotation for member vhosts
[hcoop/zz_old/debian/hcoop-apache2-config.git] / debian / hcoop-apache2-config.postinst
CommitLineData
ba5b86e0
CE
1#!/bin/sh
2# postinst script for hcoop-apache2-config
3#
4# see: dh_installdeb(1)
5
6set -e
7
8# summary of how this script can be called:
9# * <postinst> `configure' <most-recently-configured-version>
10# * <old-postinst> `abort-upgrade' <new version>
11# * <conflictor's-postinst> `abort-remove' `in-favour' <package>
12# <new-version>
13# * <postinst> `abort-remove'
14# * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
15# <failed-install-package> <version> `removing'
16# <conflicting-package> <version>
17# for details, see http://www.debian.org/doc/debian-policy/ or
18# the debian-policy package
19
20
6cfcf41e
CE
21# make sure to keep in sync with prerm
22HCOOP_APACHE_MODULES="auth_kerb cache dav dav_fs dav_lock disk_cache expires include mime_magic negotiation proxy proxy_http rewrite ssl status suexec suphp waklog"
2868ea9f 23
ba5b86e0
CE
24case "$1" in
25 configure)
2868ea9f 26
cf5855da
CE
27 # Redundantly enable on upgrades in case some new modules were
28 # enabled
2868ea9f
CE
29 for mod in $HCOOP_APACHE_MODULES; do
30 a2enmod -q $mod
31 done
2457bdd4
CE
32
33 # Enable vhosts. This has to be in sites-enabled so that
34 # 000default is loaded before member vhosts
35 a2ensite hcoop-vhosts
2868ea9f
CE
36
37 HCOOP_ENABLE_FAILED=0
38 for mod in $HCOOP_APACHE_MODULES; do
6f93ec4b 39 if [ ! -e "/etc/apache2/modules-enabled/${mod}.load" ]; then
2868ea9f
CE
40 HCOOP_ENABLED_FAILED=1
41 fi
42 done
43
44 if [ ! $HCOOP_ENABLE_FAILED ]; then
ba5b86e0
CE
45 invoke-rc.d apache2 restart
46 fi
47 ;;
48
49 abort-upgrade|abort-remove|abort-deconfigure)
50 ;;
51
52 *)
53 echo "postinst called with unknown argument \`$1'" >&2
54 exit 1
55 ;;
56esac
57
58# dh_installdeb will replace this with shell code automatically
59# generated by other debhelper scripts.
60
61#DEBHELPER#
62
63exit 0