aboutsummaryrefslogtreecommitdiff
path: root/dns/openresolv/files/pkg-deinstall.in
diff options
context:
space:
mode:
authorBeech Rintoul <beech@FreeBSD.org>2008-02-02 08:53:21 +0000
committerBeech Rintoul <beech@FreeBSD.org>2008-02-02 08:53:21 +0000
commit0cf97c910f06dde12e75f7aa7c2a210a7e756648 (patch)
treea74d461e0df85551a4a2992398463fc98f4404e7 /dns/openresolv/files/pkg-deinstall.in
parentdb0bda26b8278cccdd14c789a315b19aa0faf54c (diff)
downloadports-0cf97c910f06dde12e75f7aa7c2a210a7e756648.tar.gz
ports-0cf97c910f06dde12e75f7aa7c2a210a7e756648.zip
Notes
Diffstat (limited to 'dns/openresolv/files/pkg-deinstall.in')
-rw-r--r--dns/openresolv/files/pkg-deinstall.in24
1 files changed, 24 insertions, 0 deletions
diff --git a/dns/openresolv/files/pkg-deinstall.in b/dns/openresolv/files/pkg-deinstall.in
new file mode 100644
index 000000000000..38dc149c2fb2
--- /dev/null
+++ b/dns/openresolv/files/pkg-deinstall.in
@@ -0,0 +1,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