#
# Logitech Bus Mouse Driver Remove Script
#	Paul W. Carlson		Dec. 1988
#
TMP=/tmp/mouse.err
RERR="An error was encountered removing the Mouse Device Driver.
Errors have been written to the file $TMP.
Call Paul Carlson, FTS 832-6795, if you need more information."
echo
echo
echo
echo
echo "                 Removing Logitech Bus Mouse Device Driver"
echo
echo

/etc/conf/bin/idinstall -d mouse 2>$TMP
if [ $? != 0 ]
then
    message $RERR
    exit 1
fi

/etc/conf/bin/idbuild 2>>$TMP
if [ $? != 0 ]
then
    message $RERR
    exit 1
fi

rm -f $TMP
echo
echo "                              Removal complete."
echo
echo
exit 0
