Hi,
I think I might have stumbled upon a small bug in the boot option parsing code.
The boot option nfsmount can take optional parameters after a '|'. This is implemented in etc/rc.d/init.d/nfsmount bymountoptions=$(echo $nfsmount|cut -d\| -f2)
Unfortenately, cut will return its input text if it does not contain any delimiters. With an additional option '-s', cut will return an empty string under those circumstances. Somountoptions=$(echo $nfsmount|cut -d\| -f2 -s)
should do the trick.
Other scripts that use similiar code are not affected immediately because the other boot options' parameters are mandatory.
Cheers,
Malte