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