summaryrefslogtreecommitdiffstats
path: root/debian/zutils.postinst
diff options
context:
space:
mode:
Diffstat (limited to 'debian/zutils.postinst')
-rwxr-xr-xdebian/zutils.postinst31
1 files changed, 0 insertions, 31 deletions
diff --git a/debian/zutils.postinst b/debian/zutils.postinst
deleted file mode 100755
index 66ef2da..0000000
--- a/debian/zutils.postinst
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/sh
-
-set -e
-
-case "${1}" in
- configure)
- # restoring zcat (#902936, #903931)
- for FILE in zcat
- do if [ ! -e /bin/${FILE}.gzip ]
- then
- continue
- fi
-
- dpkg-divert --package zutils --quiet --remove --rename --divert /bin/${FILE}.gzip /bin/${FILE}
- dpkg-divert --package zutils --quiet --remove --rename --divert /usr/share/man/man1/${FILE}.gzip.1.gz /usr/share/man/man1/${FILE}.1.gz
- done
- ;;
-
- abort-upgrade|abort-remove|abort-deconfigure)
-
- ;;
-
- *)
- echo "postinst called with unknown argument \`${1}'" >&2
- exit 1
- ;;
-esac
-
-#DEBHELPER#
-
-exit 0