1
0
Fork 0
lunzip/debian/lunzip.prerm
Daniel Baumann 032a653572
Adding alternative handling for /usr/bin/lzip.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-17 22:07:34 +01:00

22 lines
264 B
Bash

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