source: trunk/athena/lib/firefox-extension/debian/debathena-firefox-extension.postrm @ 25514

Revision 25514, 1.1 KB checked in by jdreed, 13 years ago (diff)
In firefox-extension: * Instead, figure out whether to add that additional symlink in the postinst and clean it up in the postrm. Firefox is moving fast enough that doing it at build time is wrong, since we don't rebuild the package every time there's a FF bump
Line 
1#!/bin/sh
2# postrm script for debathena-firefox-extension
3#
4# see: dh_installdeb(1)
5
6set -e
7
8# summary of how this script can be called:
9#        * <postrm> `remove'
10#        * <postrm> `purge'
11#        * <old-postrm> `upgrade' <new-version>
12#        * <new-postrm> `failed-upgrade' <old-version>
13#        * <new-postrm> `abort-install'
14#        * <new-postrm> `abort-install' <old-version>
15#        * <new-postrm> `abort-upgrade' <old-version>
16#        * <disappearer's-postrm> `disappear' <overwriter>
17#          <overwriter-version>
18# for details, see http://www.debian.org/doc/debian-policy/ or
19# the debian-policy package
20
21
22case "$1" in
23    remove)
24        if [ -h /usr/lib/firefox/extensions/athena@mit.edu ]; then
25            rm /usr/lib/firefox/extensions/athena@mit.edu
26        fi
27    ;;
28
29    purge|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
30    ;;
31
32    *)
33        echo "postrm called with unknown argument \`$1'" >&2
34        exit 1
35    ;;
36esac
37
38# dh_installdeb will replace this with shell code automatically
39# generated by other debhelper scripts.
40
41#DEBHELPER#
42
43exit 0
Note: See TracBrowser for help on using the repository browser.