1
0
Fork 0
bsdgames/debian/prerm

45 lines
1.0 KiB
Bash
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#! /bin/sh
# Pre-remove script for bsdgames package.
#
# Man page: dh_installdeb(1)
set -e
# Summary of ways this script can be called:
# * <prerm> remove
# * <old-prerm> upgrade <new-version>
# * <new-prerm> failed-upgrade <old-version>
# * <conflictor-prerm> remove
# in-favour <package> <new-version>
# * <deconfigured-prerm> deconfigure
# in-favour <package-being-installed> <version>
# removing <conflicting-package> <version>
# For details, see <URL:http://www.debian.org/doc/debian-policy/> or
# the debian-policy package.
action="$1"
case "$action" in
remove|deconfigure)
update-alternatives --remove \
adventure /usr/games/bsdgames-adventure
;;
upgrade|failed-upgrade)
;;
*)
printf "prerm called with unknown action %s\n" "$action" >&2
exit 1
;;
esac
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER#
exit 0