diff options
Diffstat (limited to '')
-rwxr-xr-x | debian/lzd.postinst | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/debian/lzd.postinst b/debian/lzd.postinst deleted file mode 100755 index 877e3c1..0000000 --- a/debian/lzd.postinst +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/sh - -set -e - -case "${1}" in - configure) - # lzip-alternative - update-alternatives --quiet \ - --install /usr/bin/lzip lzip /usr/bin/lzip.lzd -2000 - - # lzip-compressor - update-alternatives --quiet \ - --install /usr/bin/lzip-compressor lzip-compressor /usr/bin/lzip.lzd -2000 - - # lzip-decompressor - update-alternatives --quiet \ - --install /usr/bin/lzip-decompressor lzip-decompressor /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 |