| Server IP : 217.160.0.212 / Your IP : 216.73.216.141 Web Server : Apache System : Linux www 6.18.51-i1-ampere #1196 SMP Fri Sep 11 20:43:55 CEST 2026 aarch64 User : sws1073854427 ( 1073854427) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/lib/dpkg/info/ |
Upload File : |
#! /bin/sh
set -e
if [ "$1" = remove ]; then
# When both the multiarch and the corresponding biarch packages are
# installed, removing the multiarch package will remove the dynamic
# linker. Recreate it in the postinst.
ARCH=${DPKG_MAINTSCRIPT_ARCH}
target=$(dpkg-query -L libc6-${ARCH} 2>/dev/null | grep -E '/lib.+/(ld\.so|ld-linux-aarch64.so.1)$' || true)
if [ -f "$target" ] && ! [ -f /lib/ld-linux-aarch64.so.1 ] ; then
ln -sf ${target#/lib/} /lib/ld-linux-aarch64.so.1
fi
fi
if [ "$1" = deconfigure ]; then
:; # blah, do something useful with ldso
fi
# Automatically added by dh_installdebconf/13.11.4
if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then
. /usr/share/debconf/confmodule
db_purge
fi
# End automatically added section
exit 0