#!/bin/sh
# $Id: 8.2.2,v 1.3 1998/09/04 05:13:48 nathanw Exp $

echo "8.2.2 version script"
case "$HOSTTYPE" in
inbsd)
	case "$1" in
	preupdate)
		;;
	*)
		# Remove an additional and unneeded "ifconfig_foo" 
		# definition from /etc/rc.conf that was put in 
		# by the install script.
		ed -s /etc/rc.conf <<END
/^ifconfig_/d
w
q
END
		;;
	esac
	;;
esac
