#
#	Script to configure the adapter.
#

#
#	Usage : ./unconfigure_adapter <interface> 
#

Usage() 
{ 
	echo "Usage : ./unconfigure_adapter <interface> "
	exit 1
} 


if [ $# -ne 1 ] 
then
	Usage
fi

interface=$1

ifconfig $interface down
ifconfig $interface unplumb
