Load/unload dav modules on postinst/postrm
[hcoop/zz_old/debian/hcoop-apache2-config.git] / debian / hcoop-apache2-config.postrm
1 #!/bin/sh
2 # prerm 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 # * <prerm> `remove'
10 # * <old-prerm> `upgrade' <new-version>
11 # * <new-prerm> `failed-upgrade' <old-version>
12 # * <conflictor's-prerm> `remove' `in-favour' <package> <new-version>
13 # * <deconfigured's-prerm> `deconfigure' `in-favour'
14 # <package-being-installed> <version> `removing'
15 # <conflicting-package> <version>
16 # for details, see http://www.debian.org/doc/debian-policy/ or
17 # the debian-policy package
18
19
20 case "$1" in
21 remove|purge)
22 a2dismod -q -f waklog || true
23 a2dismod -q -f dav || true
24 a2dismod -q -f dav_fs || true
25 a2dismod -q -f dav_lock || true
26 # invoke-rc.d apache2 restart
27 ;;
28
29 upgrade|deconfigure)
30 ;;
31
32 failed-upgrade)
33 ;;
34
35 *)
36 echo "prerm called with unknown argument \`$1'" >&2
37 exit 1
38 ;;
39 esac
40
41 # dh_installdeb will replace this with shell code automatically
42 # generated by other debhelper scripts.
43
44 #DEBHELPER#
45
46 exit 0