chiark / gitweb /
finalise changelog
[bash.git] / debian / bash-static.postrm
1 #! /bin/sh
2
3 set -e
4
5 case "$1" in
6     upgrade|failed-upgrade|abort-install|abort-upgrade)
7         ;;
8     remove|purge|disappear)
9         if which remove-shell >/dev/null && [ -f /etc/shells ]; then
10             remove-shell /bin/bash-static
11         fi
12         ;;
13     *)
14         echo "postrm called with unknown argument \`$1'" >&2
15         exit 1
16         ;;
17 esac
18
19 #DEBHELPER#
20
21 exit 0