blob: 14bd4036af47cb0877860b3e65e863c10a41e5eb [file] [log] [blame]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05001From 398fed3bb0350cb1229e54e7020ae0e044c206d1 Mon Sep 17 00:00:00 2001
2From: =?UTF-8?q?Ulrich=20=C3=96lmann?= <u.oelmann@pengutronix.de>
3Date: Wed, 17 Feb 2016 08:33:45 +0100
4Subject: bugfix: adjust statd service name
5MIME-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8
9Upstream uses 'rpc-statd.service' and Yocto introduced 'nfs-statd.service'
10instead but forgot to update the mount.nfs helper 'start-statd' accordingly.
11
12Upstream-Status: Inappropriate [other]
13
14Signed-off-by: Ulrich Ölmann <u.oelmann@pengutronix.de>
15---
16 utils/statd/start-statd | 2 +-
17 1 file changed, 1 insertion(+), 1 deletion(-)
18
19diff --git a/utils/statd/start-statd b/utils/statd/start-statd
20index 8211a90..3c2aa6f 100755
21--- a/utils/statd/start-statd
22+++ b/utils/statd/start-statd
23@@ -16,7 +16,7 @@ fi
24 # First try systemd if it's installed.
25 if [ -d /run/systemd/system ]; then
26 # Quit only if the call worked.
27- systemctl start rpc-statd.service && exit
28+ systemctl start nfs-statd.service && exit
29 fi
30
31 # Fall back to launching it ourselves.
32--
332.1.4
34