summaryrefslogtreecommitdiff
path: root/debian/postrm
blob: 27de14e1c8f498016054bf09900e9426aced5196 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#! /bin/sh

set -e

case "$1" in
    purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
        # continue below
    ;;

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

#DEBHELPER#

remove-shell /usr/bin/ksh93

exit 0