1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-15 07:56:36 +00:00
freebsd-ports/dns/openresolv/files/pkg-deinstall.in
Beech Rintoul 0cf97c910f - New port openresolv-1.1
A resolvconf compatible framework for managing /etc/resolv.conf.

PR:		ports/119171
Submitted by:	Roy Marples <roy@marples.name> (maintainer)
2008-02-02 08:53:21 +00:00

25 lines
438 B
Bash

#!/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