%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
# Need to load this before any output on stdout/stderr
# otherwise the debconf command-stream will get
# some invalid input and cause the failure of postrm.
if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then
. /usr/share/debconf/confmodule
fi
if [ "$1" = "purge" ] ; then
update-rc.d gdm3 remove >/dev/null
if [ -d /etc/gdm3 ]; then
for i in Init PreSession PostSession PostLogin; do
if [ -d /etc/gdm3/$i ]; then
rmdir --ignore-fail-on-non-empty /etc/gdm3/$i 2> /dev/null
fi
done
rm -f /etc/gdm3/greeter.dconf-defaults
rmdir --ignore-fail-on-non-empty /etc/gdm3
fi
if which ucf >/dev/null; then
ucf --purge /etc/gdm3/greeter.dconf-defaults
ucfr --purge gdm3 /etc/gdm3/greeter.dconf-defaults
fi
rm -rf /var/lib/gdm3
rm -rf /run/gdm3
rm -rf /var/log/gdm3
rm -rf /var/cache/gdm
if getent passwd gdm >/dev/null; then
if which deluser >/dev/null; then
deluser --system gdm || echo "Could not remove gdm user."
fi
fi
if getent group gdm >/dev/null; then
if which delgroup >/dev/null; then
delgroup --system gdm || echo "Could not remove gdm group."
fi
fi
fi
# Automatically added by dh_installdebconf/13.6ubuntu1
if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then
. /usr/share/debconf/confmodule
db_purge
fi
# End automatically added section