#!/sbin/sh
#
# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#
# ident	"@(#)postremove	1.1	08/01/23 SMI"
#

BD=${BASEDIR:-/}
if grep -w igb $BD/etc/name_to_major > /dev/null 2>&1
then
	rem_drv -b ${BD} igb
	if [ $? -ne 0 ]
	then
		exit 1 	
	fi
fi
exit 0
