The postinstall script for SUNWstmf has the following:
driver_not_installed()
{
grep $1 /etc/name_to_major >/dev/null 2>&1
if [ $? -eq 0 ]
then
return 1
else
return 0
fi
}
This is busted for installation environments, and needs to be
"$BASEDIR/etc/name_to_major".
|