summaryrefslogtreecommitdiffstats
path: root/debian/lzd.postinst
diff options
context:
space:
mode:
Diffstat (limited to 'debian/lzd.postinst')
-rwxr-xr-xdebian/lzd.postinst32
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