WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: nfs-server script error  (Read 1449 times)

Offline makoto

  • Newbie
  • *
  • Posts: 26
nfs-server script error
« 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.