1
0
Fork 0
clzip/debian/clzip.prerm
Daniel Baumann 0c35f793a7
Making maintainer scripts executable in source tree.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-17 20:43:15 +01:00

22 lines
257 B
Bash
Executable file

#!/bin/sh
set -e
case "${1}" in
remove|upgrade|deconfigure)
update-alternatives --quiet --remove lzip /usr/bin/lzip.clzip
;;
failed-upgrade)
;;
*)
echo "prerm called with unknown argument \`${1}'" >&2
exit 1
;;
esac
#DEBHELPER#
exit 0