summaryrefslogtreecommitdiffstats
path: root/debian/lunzip.postinst
diff options
context:
space:
mode:
Diffstat (limited to 'debian/lunzip.postinst')
-rwxr-xr-xdebian/lunzip.postinst30
1 files changed, 0 insertions, 30 deletions
diff --git a/debian/lunzip.postinst b/debian/lunzip.postinst
deleted file mode 100755
index 4c02908..0000000
--- a/debian/lunzip.postinst
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/sh
-
-set -e
-
-case "${1}" in
- configure)
- # lzip-alternative
- update-alternatives --quiet \
- --install /usr/bin/lzip lzip /usr/bin/lzip.lunzip -1000 \
- --slave /usr/share/man/man1/lzip.1.gz lzip.1.gz /usr/share/man/man1/lzip.lunzip.1.gz
-
- # lzip-decompressor
- update-alternatives --quiet \
- --install /usr/bin/lzip-decompressor lzip-decompressor /usr/bin/lzip.lunzip -1000 \
- --slave /usr/share/man/man1/lzip-decompressor.1.gz lzip-decompressor.1.gz /usr/share/man/man1/lzip.lunzip.1.gz
- ;;
-
- abort-upgrade|abort-remove|abort-deconfigure)
-
- ;;
-
- *)
- echo "postinst called with unknown argument \`${1}'" >&2
- exit 1
- ;;
-esac
-
-#DEBHELPER#
-
-exit 0