| Server IP : 54.37.205.81 / Your IP : 216.73.216.76 Web Server : nginx/1.22.1 System : Linux vps-249481fa 6.1.0-50-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.176-1 (2026-07-02) x86_64 User : debian ( 1000) PHP Version : 8.2.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/lib/dpkg/info/ |
Upload File : |
#!/bin/sh
set -e
cleanup_biarch_dirs() {
dpkg --compare-versions "$2" lt "36~" || return 0
# bootstrapping or earlier conversions may have created empty biarch
# directories and links. glibc 2.35-4 or later will create them if needed,
# so clean up the unused (and unowned) ones
local arch_directories="/lib64 /lib32 /libo32 /libx32"
for dir in $arch_directories; do
[ -e "$DPKG_ROOT$dir" ] || continue
if ! dpkg-query -S $dir >/dev/null 2>&1; then
rm -v "$DPKG_ROOT$dir"
if [ -e "$DPKG_ROOT/usr$dir" ] && ! dpkg-query -S /usr$dir >/dev/null 2>&1 ; then
rmdir --ignore-fail-on-non-empty -v "$DPKG_ROOT/usr$dir"
fi
fi
done
}
case "$1" in
configure)
cleanup_biarch_dirs
;;
esac