e7f81ca2808eeea437f2ea6fcaa84e977c4f2d8d
[hcoop/zz_old/debian/hcoop-apache2-config.git] / debian / hcoop-apache2-config.postinst
1 #!/bin/sh
2 # postinst script for hcoop-apache2-config
3 #
4 # see: dh_installdeb(1)
5
6 set -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
21 # make sure to keep in sync with prerm
22 HCOOP_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"
23
24 case "$1" in
25 configure)
26
27 # Redundantly enable on upgrades in case some new modules were
28 # enabled
29 for mod in $HCOOP_APACHE_MODULES; do
30 a2enmod -q $mod
31 done
32
33 HCOOP_ENABLE_FAILED=0
34 for mod in $HCOOP_APACHE_MODULES; do
35 if [ ! -e "/etc/apache2/modules-enabled/${mod}.conf" ]; then
36 HCOOP_ENABLED_FAILED=1
37 fi
38 done
39
40 if [ ! $HCOOP_ENABLE_FAILED ]; then
41 invoke-rc.d apache2 restart
42 fi
43 ;;
44
45 abort-upgrade|abort-remove|abort-deconfigure)
46 ;;
47
48 *)
49 echo "postinst called with unknown argument \`$1'" >&2
50 exit 1
51 ;;
52 esac
53
54 # dh_installdeb will replace this with shell code automatically
55 # generated by other debhelper scripts.
56
57 #DEBHELPER#
58
59 exit 0