__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
#!/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