~indicator-applet-developers/notify-osd/trunk

« back to all changes in this revision

Viewing changes to debian/notify-osd.postrm

  • Committer: Robert Bruce Park
  • Date: 2012-11-22 21:11:36 UTC
  • mto: This revision was merged to the branch mainline in revision 459.
  • Revision ID: robert.park@canonical.com-20121122211136-rve2xxtgaupludbo
Inline packaging metadata.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh
 
2
set -e
 
3
 
 
4
case "$1" in
 
5
    remove|purge)
 
6
        # Remove our diversion
 
7
        dpkg-divert --remove --rename --package notify-osd --divert /usr/share/dbus-1/services/org.freedesktop.Notifications.service.notify-osd /usr/share/dbus-1/services/org.freedesktop.Notifications.service > /dev/null
 
8
        ;;
 
9
 
 
10
    upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
 
11
        ;;
 
12
 
 
13
    *)
 
14
        echo "postrm called with unknown argument \`$1'" >&2
 
15
        exit 0
 
16
esac
 
17
 
 
18
#DEBHELPER#
 
19
 
 
20
exit 0