On Fri, Oct 24, 2008, Michael Meskes wrote:
> if [ $MODULES ]; then
> modprobe --all --use-blacklist $MODULES 2>/dev/null
> fi
Err you probably lack a -n here, but FYI there's already:
if [ -z "$MODULES" ]; then
return
fi
I think modprobe --all always returns 0 (which is probably a bug; I've
reported when I rewrote the init script), so it might be a bogus return
again which might want to be return 0, but I don't think so.
--
Loïc Minier
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]