Merge branch 'master' of ssh://drop.maemo.org/git/vicar
[vicar] / qtc_packaging / debian_harmattan / 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 <<<<<<< HEAD
24         echo "Deleting Vicar Telepathy account ..."
25         [[ -x /opt/vicar/bin/vicar-utils ]] && /opt/vicar/bin/vicar-utils REMOVE
26
27         echo "Deleting Vicar Harmattan account ..."
28         [[ -x /opt/vicar/bin/vicar-utils ]] && /opt/vicar/bin/vicar-utils --delete-account
29
30         #echo "Deleting Vicar Profiles database ..."
31         #[[ -d /home/user/.vicar ]] && rm -rf /home/user/.vicar/
32 =======
33         eval $(dbus-launch --sh-syntax)
34         export DBUS_SESSION_BUS_ADDRESS
35         export DBUS_SESSION_BUS_PID
36
37         echo "Deleting Vicar Telepathy account ..."
38         #[[ -x /opt/vicar/bin/vicar-utils ]] && su - user -c "exec /opt/vicar/bin/vicar-utils REMOVE"
39
40         echo "Deleting Vicar Profiles database ..."
41         #[[ -x /opt/vicar/bin/vicar-utils ]] && su - user -c "exec /opt/vicar/bin/vicar-utils DROPDB"
42 >>>>>>> 74800375ecf7f41e290cf7cc7fa9ee8b230be68e
43
44         # Kill any running instances of the daemon (only used on Linux based systems)
45         killall -q vicar-daemon || true
46         killall -q vicar-telepathy || true
47     ;;
48
49     upgrade)
50         # Kill any running instances of the daemon (only used on Linux based systems)
51         killall -q vicar-daemon || true
52         killall -q vicar-telepathy || true
53     ;;
54
55     failed-upgrade)
56     ;;
57
58     *)
59         echo "prerm called with unknown argument \`$1'" >&2
60         exit 1
61     ;;
62 esac
63
64 # dh_installdeb will replace this with shell code automatically
65 # generated by other debhelper scripts.
66
67 #DEBHELPER#
68
69 exit 0