9885c6f1bd6412066312c30e6abd55a77432dbb0
[vicar] / debian / prerm
1 #!/bin/sh
2 # prerm script for vicar
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|deconfigure)
22
23         echo "Deleting Vicar Telepathy account ..."
24         [[ -x /opt/vicar/vicar-utils ]] && su - user -c "exec /opt/vicar/vicar-utils REMOVE"
25
26         echo "Deleting Vicar Profiles database ..."
27         [[ -x /opt/vicar/vicar-utils ]] && su - user -c "exec /opt/vicar/vicar-utils DROPDB"
28
29         # Kill any running instances of the daemon (only used on Linux based systems)
30         killall -q vicar-daemon || true
31         killall -q vicar-telepathy || true
32     ;;
33
34     upgrade)
35         # Kill any running instances of the daemon (only used on Linux based systems)
36         killall -q vicar-daemon || true
37         killall -q vicar-telepathy || true
38     ;;
39
40     failed-upgrade)
41     ;;
42
43     *)
44         echo "prerm called with unknown argument \`$1'" >&2
45         exit 1
46     ;;
47 esac
48
49 # dh_installdeb will replace this with shell code automatically
50 # generated by other debhelper scripts.
51
52 #DEBHELPER#
53
54 exit 0