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