summaryrefslogtreecommitdiffstats
path: root/debian/liblz1.postinst
diff options
context:
space:
mode:
Diffstat (limited to 'debian/liblz1.postinst')
-rw-r--r--debian/liblz1.postinst24
1 files changed, 0 insertions, 24 deletions
diff --git a/debian/liblz1.postinst b/debian/liblz1.postinst
deleted file mode 100644
index 7a9fa90..0000000
--- a/debian/liblz1.postinst
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/sh
-
-set -e
-
-case "${1}" in
- configure)
- update-alternatives --quiet \
- --install /usr/bin/lzip lzip /usr/bin/lzip.mini 75 \
- --slave /usr/share/man/man1/lzip.1.gz lzip.1.gz /usr/share/man/man1/lzip.mini.1.gz
- ;;
-
- abort-upgrade|abort-remove|abort-deconfigure)
-
- ;;
-
- *)
- echo "postinst called with unknown argument \`${1}'" >&2
- exit 1
- ;;
-esac
-
-#DEBHELPER#
-
-exit 0