1
0
mirror of https://salsa.debian.org/games-team/bsdgames synced 2024-06-29 17:55:27 +00:00
bsdgames/debian/prerm
Ben Finney 0987c534ad Explicitly exit maintainer scripts with 0 status on success.
Debian Policy §6.4 requires maintainer scripts exit with exit status
indicating success or failure, with 0 for success.
2016-04-05 09:53:26 +02:00

40 lines
952 B
Bash
Raw 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|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