1
0
Fork 0

Adding alternative handling for /usr/bin/lzip.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-24 03:57:50 +01:00
parent cfbffdc6b3
commit babddf4dca
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
4 changed files with 57 additions and 0 deletions

22
debian/plzip.prerm vendored Normal file
View file

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