citadel/meta/recipes-connectivity/nfs-utils/files/nfs-utils-debianize-start-statd.patch
brl 098b8f982b Squashed 'poky/' content from commit 4469acdf1d
git-subtree-dir: poky
git-subtree-split: 4469acdf1d0338220f3fe2ecb5e079eea6fda375
2017-12-04 16:35:29 -05:00

43 lines
1.0 KiB
Diff

[PATCH] nfs-utils: debianize start-statd
Upstream-Status: Pending
make start-statd command to use nfscommon configure, too.
Signed-off-by: Henrik Riomar <henrik.riomar@ericsson.com>
Signed-off-by: Li Wang <li.wang@windriver.com>
Signed-off-by: Roy Li <rongqing.li@windriver.com>
Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com>
---
utils/statd/start-statd | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/utils/statd/start-statd b/utils/statd/start-statd
index 2fd6039..f591b34 100755
--- a/utils/statd/start-statd
+++ b/utils/statd/start-statd
@@ -17,6 +17,14 @@ then
# statd already running - must have been slow to respond.
exit 0
fi
+
+# Read config
+DEFAULTFILE=/etc/default/nfs-common
+NEED_IDMAPD=
+if [ -f $DEFAULTFILE ]; then
+ . $DEFAULTFILE
+fi
+
# First try systemd if it's installed.
if [ -d /run/systemd/system ]; then
# Quit only if the call worked.
@@ -25,4 +33,4 @@ fi
cd /
# Fall back to launching it ourselves.
-exec rpc.statd --no-notify
+exec rpc.statd --no-notify $STATDOPTS
--
2.6.6