%PDF-1.4 %Óëéá 1 0 obj <> endobj 3 0 obj <> endobj 4 0 obj <
| Server IP : 212.252.79.165 / Your IP : 216.73.217.172 [ Web Server : Apache System : Linux 212-252-79-165.cprapid.com 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64 User : cehaburo ( 1001) PHP Version : 8.1.33 Disable Function : exec,passthru,shell_exec,system Domains : 48 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/cehaburo/public_html/images/product/anon_sym/anon/var/lib/dpkg/info/ |
Upload File : |
#! /bin/sh
set -e
# Kill any pre-compiled python crap
kill_python_crappage() {
[ -d /usr/share/hplip ] && \
find /usr/share/hplip \
\( -name '*.pyc' -o -name '*.pyo' \) \
-exec rm -f {} \;
:
}
case "$1" in
failed-upgrade|abort-install|abort-upgrade)
# Remove the symlink, no matter what. If it is
# needed, dpkg will recreate it. This is in an
# downgrade/failed upgrade unwind path
if [ -h /usr/share/doc/hplip ]; then
rm -f /usr/share/doc/hplip
fi
# and kill any crap left over for failed-upgrade
kill_python_crappage
;;
upgrade)
# support downgrading
if [ -h /usr/share/doc/hplip ]; then
rm -f /usr/share/doc/hplip
fi
;;
remove|disappear)
kill_python_crappage
;;
purge)
kill_python_crappage
for i in /run/hplip /var/run/hplip /var/log/hp/tmp; do
if dpkg-statoverride --list $i > /dev/null; then
dpkg-statoverride --remove $i || true
fi
done
[ -d /run/hplip ] && rm -fr /run/hplip
[ -d /var/log/hp/tmp ] && rm -fr /var/log/hp/tmp
;;
*)
echo "postrm called with unknown argument \`$1'" >&2
exit 1
esac
exit 0