]> git.ipfire.org Git - thirdparty/e2fsprogs.git/blame - debian/comerr-dev.postinst
libext2fs: fix potential divide by zero bug caused by a lxcfs bug
[thirdparty/e2fsprogs.git] / debian / comerr-dev.postinst
CommitLineData
31ee367e
TT
1#!/bin/sh
2
3# Abort on error.
4set -e
5
6symlink_match()
7{
8 local SYMLINK="$1"
9 local SYMLINK_TARGET="$2"
10
11 [ "$(readlink "$SYMLINK")" = "$SYMLINK_TARGET" ] || \
12 [ "$(readlink -f "$SYMLINK")" = "$SYMLINK_TARGET" ]
13}
14
15SYMLINK=/usr/share/doc/comerr-dev
16SYMLINK_TARGET=libcomerr2
17SYMLINK_TARGET2=libcom-err2
18
19if [ "$1" = "configure" ] && [ -h "${SYMLINK}.dpkg-backup" ]
20then
21 if symlink_match "${SYMLINK}.dpkg-backup" "$SYMLINK_TARGET" ||
22 symlink_match "${SYMLINK}.dpkg-backup" "$SYMLINK_TARGET2"
23 then
24 rm -f "${SYMLINK}.dpkg-backup"
25 fi
26fi
27
28#DEBHELPER#
29
30exit 0