Add postinst script to restart hildon-home in order to reload the resident plugin.
[conv-inbox] / debian / conversations-inbox-widget.postinst
1 #! /bin/sh
2
3 case "$1" in
4     configure)
5
6       echo "Restarting hildon-home."
7       killall hildon-home
8     ;;
9
10     abort-upgrade|abort-remove|abort-deconfigure)
11
12     ;;
13
14     *)
15         echo "postinst called with unknown argument \`$1'" >&2
16         exit 1
17     ;;
18 esac
19
20 exit 0