source: pkg/main/gnome-panel/trunk/debian/gnome-panel-data.postrm @ 1541

Revision 1541, 326 bytes checked in by alanbach-guest, 6 years ago (diff)

gnome-panel 2.18.2 updates

Line 
1#!/bin/sh
2
3set -e
4
5self="$(basename "$0")"
6
7action="$1"
8
9case "$action" in
10  remove)
11    [ -x /usr/sbin/update-gconf-defaults ] && update-gconf-defaults
12  ;;
13  upgrade|failed-upgrade|abort-install|abort-install|abort-upgrade|disappear|purge)
14  ;;
15  *)
16    echo "$self: W: unknown action \`$action'" >&2
17  ;;
18esac
19
20#DEBHELPER#
Note: See TracBrowser for help on using the repository browser.