⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.155
Server IP:
57.129.66.90
Server:
Linux vps-7f548908 5.15.0-160-generic #170-Ubuntu SMP Wed Oct 1 10:06:56 UTC 2025 x86_64
Server Software:
LiteSpeed
PHP Version:
8.2.27
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
lib
/
dpkg
/
info
/
View File Name :
comerr-dev:amd64.postrm
#!/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