blob: 38dc149c2fb240aab7c65d14fb9a539596a84014 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#!/bin/sh
#
# $FreeBSD$
#
case $2 in
DEINSTALL)
;;
POST-DEINSTALL)
echo "===> post-deinstallation information for $1"
echo ""
echo "Please note that $1 was not completely removed"
echo "from this system:"
echo ""
echo "/etc/resolv.conf should now be changed to be a regular"
echo "file and /var/run/resolvconf can be removed if openresolv"
echo "will no longer be used."
echo ""
;;
*)
exit 64
;;
esac
exit 0
|