diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 15:49:26 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 15:49:26 +0000 |
commit | 668f05d989d214c0a5201bc51982e932ff15f6a3 (patch) | |
tree | 31067fca0cd63c2a0fb2bd85798e5cb2ef0dec49 /debian/e2fsck-static.preinst | |
parent | Adding upstream version 1.47.0. (diff) | |
download | e2fsprogs-668f05d989d214c0a5201bc51982e932ff15f6a3.tar.xz e2fsprogs-668f05d989d214c0a5201bc51982e932ff15f6a3.zip |
Adding debian version 1.47.0-2.debian/1.47.0-2debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/e2fsck-static.preinst')
-rw-r--r-- | debian/e2fsck-static.preinst | 19 |
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 |