Tiny Core Linux

Tiny Core Extensions => TCE Bugs => Topic started by: makoto on June 01, 2013, 08:15:54 AM

Title: nfs-server script error
Post by: makoto on June 01, 2013, 08:15:54 AM
I find there is a bug in nfs-server script. In line 15, the original is
Code: [Select]
if grep nfsd /proc/mounts 2> /dev/null; thenBut I cannot start nfs server if I don't change the line into
Code: [Select]
if [ -z "`grep nfsd /proc/mounts`" 2> /dev/null ]; thenMaybe the package nfs-utils.tcz should be updated.