031d9096e813329749d0eb6cd365424c1194d27a
[conv-inbox] / debian / conversations-inbox-widget.postinst
1 #! /bin/sh
2
3 case "$1" in
4     configure)
5
6       run-standalone.sh dbus-send \
7           --dest=org.freedesktop.Notifications \
8           /org/freedesktop/Notifications \
9           org.freedesktop.Notifications.SystemNoteInfoprint \
10           string:"Restart device to complete installation"
11     ;;
12
13     abort-upgrade|abort-remove|abort-deconfigure)
14
15     ;;
16
17     *)
18         echo "postinst called with unknown argument \`$1'" >&2
19         exit 1
20     ;;
21 esac
22
23 exit 0