1
0
Fork 0

Releasing debian version 0.2-2.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-20 14:25:56 +01:00
parent 74dbb14a20
commit beb18247c3
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
3 changed files with 51 additions and 0 deletions

22
debian/lzd.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.educational-decompressor
;;
failed-upgrade)
;;
*)
echo "prerm called with unknown argument \`${1}'" >&2
exit 1
;;
esac
#DEBHELPER#
exit 0