summaryrefslogtreecommitdiffstats
path: root/debian/squeeze/tdebase/debian/konqueror-trinity.prerm
blob: 57b10d0a56d2490ba3d1c037a677e0ca3591b13d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#! /bin/sh -e

case "$1" in
    remove)
        /usr/sbin/update-alternatives --remove x-www-browser /opt/trinity/bin/konqueror
    ;;

    upgrade|deconfigure)
    ;;

    failed-upgrade)
    ;;

    *)
        echo "prerm called with unknown argument \`$1'" >&2
        exit 1
    ;;
esac

#DEBHELPER#

exit 0