| Server IP : 195.114.193.97 / Your IP : 216.73.217.93 Web Server : LiteSpeed System : Linux host 5.15.0-126-generic #136-Ubuntu SMP Wed Nov 6 10:38:22 UTC 2024 x86_64 User : sembi4241 ( 1126) PHP Version : 8.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/lib/dpkg/info/ |
Upload File : |
#!/bin/sh
# Abort on error.
set -e
symlink_match()
{
local SYMLINK="$1"
local SYMLINK_TARGET="$2"
[ "$(readlink "$SYMLINK")" = "$SYMLINK_TARGET" ] || \
[ "$(readlink -f "$SYMLINK")" = "$SYMLINK_TARGET" ]
}
SYMLINK=/usr/share/doc/comerr-dev
SYMLINK_TARGET=libcomerr2
SYMLINK_TARGET2=libcom-err2
if [ "$1" = "purge" ] && [ -h "${SYMLINK}.dpkg-backup" ]
then
rm -f "${SYMLINK}.dpkg-backup"
fi
if [ "$1" = "abort-install" -o "$1" = "abort-upgrade" ] &&
[ -n "$2" ] && [ ! -e "$SYMLINK" ] && [ -h "${SYMLINK}.dpkg-backup" ]
then
if symlink_match "${SYMLINK}.dpkg-backup" "$SYMLINK_TARGET" ||
symlink_match "${SYMLINK}.dpkg-backup" "$SYMLINK_TARGET2"
then
echo "Restoring backup of $SYMLINK ..."
mv "${SYMLINK}.dpkg-backup" "$SYMLINK"
fi
fi
exit 0