1
0
Fork 0
lzd/debian/lzd.postinst
Daniel Baumann beb18247c3
Releasing debian version 0.2-2.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-20 14:25:56 +01:00

23 lines
314 B
Bash

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