]> code.ossystems Code Review - openembedded-core.git/commitdiff
nfs-utils: fix nfs server initscript
authorQing He <qing.he@intel.com>
Wed, 20 Oct 2010 08:49:04 +0000 (16:49 +0800)
committerRichard Purdie <rpurdie@linux.intel.com>
Wed, 20 Oct 2010 09:27:34 +0000 (10:27 +0100)
fixes [BUGID #483]

Signed-off-by: Qing He <qing.he@intel.com>
meta/recipes-connectivity/nfs-utils/nfs-utils/nfsserver

index 9d02e85848c73d1be1bb0b1fd2aecc1a85788e63..fe76c515e08c8badde30cb122b204c8a27ac6bbe 100644 (file)
@@ -20,9 +20,9 @@
 test -r /etc/default/nfsd && . /etc/default/nfsd
 #
 # Location of executables:
-test -x "$NFS_MOUNTD" || NFS_MOUNTD=/usr/sbin/mountd
-test -x "$NFS_NFSD" || NFS_NFSD=/usr/sbin/nfsd
-test -x "$NFS_STATD" || NFS_STATD=/usr/sbin/statd
+test -x "$NFS_MOUNTD" || NFS_MOUNTD=/usr/sbin/rpc.mountd
+test -x "$NFS_NFSD" || NFS_NFSD=/usr/sbin/rpc.nfsd
+test -x "$NFS_STATD" || NFS_STATD=/usr/sbin/rpc.statd
 #
 # The user mode program must also exist (it just starts the kernel
 # threads using the kernel module code).