diff options
Diffstat (limited to 'debian/postrm')
-rw-r--r-- | debian/postrm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/debian/postrm b/debian/postrm new file mode 100644 index 0000000..177509a --- /dev/null +++ b/debian/postrm @@ -0,0 +1,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 /bin/ksh93 + +exit 0 |