summaryrefslogtreecommitdiffstats
path: root/debian/e2fsck-static.preinst
diff options
context:
space:
mode:
Diffstat (limited to 'debian/e2fsck-static.preinst')
-rw-r--r--debian/e2fsck-static.preinst19
1 files changed, 19 insertions, 0 deletions
diff --git a/debian/e2fsck-static.preinst b/debian/e2fsck-static.preinst
new file mode 100644
index 0000000..e756ade
--- /dev/null
+++ b/debian/e2fsck-static.preinst
@@ -0,0 +1,19 @@
+#!/bin/sh
+
+# Abort on error.
+set -e
+
+PKG=e2fsck-static
+DOCLNK=/usr/share/doc/$PKG
+if test "$1" = upgrade \
+ -a -L $DOCLNK
+then
+ rm $DOCLNK
+fi
+
+# dh_installdeb will replace this with shell code automatically
+# generated by other debhelper scripts.
+
+#DEBHELPER#
+
+exit 0