1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
#!/bin/sh
# postrm script for #PACKAGE#
#
# see: dh_installdeb(1)
set -e
# only remove state dir if purge
# only remove the link if it points to /run/connman/resolv.conf
case "$1" in
purge)
[ -d /var/lib/connman ] && rm -rf /var/lib/connman
if [ "$(readlink /etc/resolv.conf | grep connman)" ]; then
rm -f /etc/resolv.conf
fi
;;
remove)
if [ "$(readlink /etc/resolv.conf | grep connman)" ]; then
rm -f /etc/resolv.conf
fi
;;
upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
;;
*)
echo "postrm called with unknown argument \`$1'" >&2
exit 1
;;
esac
#DEBHELPER#
exit 0
|