It's a bug that I've already posted. Patch is here:
--- /usr/local/etc/init.d/nfs-server
+++ /usr/local/etc/init.d/nfs-server
@@ -12,7 +12,7 @@
fi
if grep nfsd /proc/filesystems 2> /dev/null; then
- if grep nfsd /proc/mounts 2> /dev/null; then
+ if [ -z "`grep nfsd /proc/mounts`" 2> /dev/null ]; then
mount -t nfsd nfsd /proc/fs/nfs 2> /dev/null
fi
fi