| Server IP : 172.67.191.97 / Your IP : 104.23.243.197 Web Server : Apache/2.4.63 (Ubuntu) System : Linux adminpruebas-Virtual-Machine 6.14.0-37-generic #37-Ubuntu SMP PREEMPT_DYNAMIC Fri Nov 14 22:10:32 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 8.4.5 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/lib/dpkg/info/ |
Upload File : |
#!/bin/sh
# postrm script for geoclue-2.0
#
# see: dh_installdeb(1)
set -e
case "$1" in
purge)
if dpkg-statoverride --list /var/lib/geoclue >/dev/null 2>&1
then
dpkg-statoverride --remove /var/lib/geoclue
fi
;;
remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
;;
*)
echo "postrm called with unknown argument \`$1'" >&2
exit 1
;;
esac
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
# Automatically added by dh_installdeb/13.23ubuntu1
dpkg-maintscript-helper rm_conffile /etc/apparmor.d/usr.libexec.geoclue -- "$@"
# End automatically added section
# Automatically added by dh_installsystemd/13.23ubuntu1
if [ "$1" = remove ] && [ -d /run/systemd/system ] ; then
systemctl --system daemon-reload >/dev/null || true
fi
# End automatically added section
# Automatically added by dh_apparmor/4.1.0~beta1-0ubuntu4
if [ "$1" = "purge" ] && ! [ -e "/etc/apparmor.d/usr.libexec.geoclue" ] ; then
rm -f "/etc/apparmor.d/disable/usr.libexec.geoclue" || true
rm -f "/etc/apparmor.d/force-complain/usr.libexec.geoclue" || true
rm -f "/etc/apparmor.d/local/usr.libexec.geoclue" || true
rm -f /var/cache/apparmor/*/"usr.libexec.geoclue" || true
rmdir /etc/apparmor.d/disable 2>/dev/null || true
rmdir /etc/apparmor.d/local 2>/dev/null || true
rmdir /etc/apparmor.d 2>/dev/null || true
fi
# End automatically added section
exit 0