summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2011-03-16 11:52:13 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-03-18 23:23:30 +0000
commit07f7dc47ecf87c186062181447edaa268a092801 (patch)
treea4a304948be0f6a68afbeaca3b5cf0c410bf18cb /meta
parentc52c66ba4dffe0c5eff7c2ca7d38ca9c15a71e40 (diff)
downloadpoky-07f7dc47ecf87c186062181447edaa268a092801.tar.gz
nfs-utils: fix "sh: bad number" error on start/stop of nfsserver
Adds a test to avoid the "sh: bad number" error message during service start or stop of nfsserver when there is no NFS_SERVERS value set in /etc/default/nfsd. (From OE-Core rev: 0f2debd9360abac54d3e44551af309f0bdde96e7) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-connectivity/nfs-utils/nfs-utils/nfsserver2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-connectivity/nfs-utils/nfs-utils/nfsserver b/meta/recipes-connectivity/nfs-utils/nfs-utils/nfsserver
index fe76c515e0..69c871855f 100644
--- a/meta/recipes-connectivity/nfs-utils/nfs-utils/nfsserver
+++ b/meta/recipes-connectivity/nfs-utils/nfs-utils/nfsserver
@@ -31,7 +31,7 @@ test -x "$NFS_NFSD" || exit 0
31# 31#
32# Default is 8 threads, value is settable between 1 and the truely 32# Default is 8 threads, value is settable between 1 and the truely
33# ridiculous 99 33# ridiculous 99
34test "$NFS_SERVERS" -gt 0 && test "$NFS_SERVERS" -lt 100 || NFS_SERVERS=8 34test "$NFS_SERVERS" != "" && test "$NFS_SERVERS" -gt 0 && test "$NFS_SERVERS" -lt 100 || NFS_SERVERS=8
35# 35#
36# The default state directory is /var/lib/nfs 36# The default state directory is /var/lib/nfs
37test -n "$NFS_STATEDIR" || NFS_STATEDIR=/var/lib/nfs 37test -n "$NFS_STATEDIR" || NFS_STATEDIR=/var/lib/nfs