summaryrefslogtreecommitdiffstats
path: root/debian/lzip.prerm
diff options
context:
space:
mode:
authorDaniel Baumann <mail@daniel-baumann.ch>2015-11-07 09:57:10 +0000
committerDaniel Baumann <mail@daniel-baumann.ch>2015-11-07 09:57:10 +0000
commit58ed1616832cb82e3a4b2c9998d96e3de1b2b525 (patch)
treef4e89e1c9a49fb02392486d787ee2b181f288bbf /debian/lzip.prerm
parentMerging upstream version 1.15~pre1. (diff)
downloadlzip-58ed1616832cb82e3a4b2c9998d96e3de1b2b525.tar.xz
lzip-58ed1616832cb82e3a4b2c9998d96e3de1b2b525.zip
Adding debian version 1.15~pre1-1.debian/1.15_pre1-1
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to 'debian/lzip.prerm')
-rw-r--r--debian/lzip.prerm22
1 files changed, 22 insertions, 0 deletions
diff --git a/debian/lzip.prerm b/debian/lzip.prerm
new file mode 100644
index 0000000..90d9b8b
--- /dev/null
+++ b/debian/lzip.prerm
@@ -0,0 +1,22 @@
+#!/bin/sh
+
+set -e
+
+case "${1}" in
+ remove|upgrade|deconfigure)
+ update-alternatives --quiet --remove lzip /usr/bin/lzip.not-parallel
+ ;;
+
+ failed-upgrade)
+
+ ;;
+
+ *)
+ echo "prerm called with unknown argument \`${1}'" >&2
+ exit 1
+ ;;
+esac
+
+#DEBHELPER#
+
+exit 0