1
0
Fork 0
lzd/debian/lzd.postinst
Daniel Baumann dceeaec3a4
Making maintainer scripts executable in source tree.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-20 15:00:36 +01:00

23 lines
297 B
Bash
Executable file

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