mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-15 07:56:36 +00:00
0cf97c910f
A resolvconf compatible framework for managing /etc/resolv.conf. PR: ports/119171 Submitted by: Roy Marples <roy@marples.name> (maintainer)
25 lines
438 B
Bash
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
|