From 2b6e62175e447e735f9eae073c9653104e0c0125 Mon Sep 17 00:00:00 2001 From: Li Wang Date: Mon, 29 Jun 2015 14:22:35 +0800 Subject: nfs-utils: debianize start-statd make start-statd command to use nfscommon configure, too. Signed-off-by: Henrik Riomar Signed-off-by: Li Wang Signed-off-by: Roy Li Signed-off-by: Wenzong Fan Signed-off-by: Richard Purdie (cherry picked from commit 98d3607697da77bd79b367b2879ef6944e59d0a3) Signed-off-by: Andreas Oberritter --- .../files/nfs-utils-debianize-start-statd.patch | 41 ++++++++++++++++++++++ .../nfs-utils/nfs-utils_1.3.1.bb | 1 + 2 files changed, 42 insertions(+) create mode 100644 meta/recipes-connectivity/nfs-utils/files/nfs-utils-debianize-start-statd.patch diff --git a/meta/recipes-connectivity/nfs-utils/files/nfs-utils-debianize-start-statd.patch b/meta/recipes-connectivity/nfs-utils/files/nfs-utils-debianize-start-statd.patch new file mode 100644 index 0000000000..5a2d5c8544 --- /dev/null +++ b/meta/recipes-connectivity/nfs-utils/files/nfs-utils-debianize-start-statd.patch @@ -0,0 +1,41 @@ +[PATCH] nfs-utils: debianize start-statd + +Upstream-status: Pending + +make start-statd command to use nfscommon configure, too. + +Signed-off-by: Henrik Riomar +Signed-off-by: Li Wang +Signed-off-by: Roy Li +Signed-off-by: Wenzong Fan +--- + utils/statd/start-statd | 9 ++++++++- + 1 file changed, 8 insertions(+), 1 deletion(-) + +diff --git a/utils/statd/start-statd b/utils/statd/start-statd +index ec9383b..3969b8c 100755 +--- a/utils/statd/start-statd ++++ b/utils/statd/start-statd +@@ -6,6 +6,13 @@ + # site. + PATH="/sbin:/usr/sbin:/bin:/usr/bin" + ++# Read config ++DEFAULTFILE=/etc/default/nfs-common ++NEED_IDMAPD= ++if [ -f $DEFAULTFILE ]; then ++ . $DEFAULTFILE ++fi ++ + # First try systemd if it's installed. + if systemctl --help >/dev/null 2>&1; then + # Quit only if the call worked. +@@ -13,4 +20,4 @@ if systemctl --help >/dev/null 2>&1; then + fi + + # Fall back to launching it ourselves. +-exec rpc.statd --no-notify ++exec rpc.statd --no-notify $STATDOPTS +-- +1.9.1 + diff --git a/meta/recipes-connectivity/nfs-utils/nfs-utils_1.3.1.bb b/meta/recipes-connectivity/nfs-utils/nfs-utils_1.3.1.bb index 4799429292..f6f05531d7 100644 --- a/meta/recipes-connectivity/nfs-utils/nfs-utils_1.3.1.bb +++ b/meta/recipes-connectivity/nfs-utils/nfs-utils_1.3.1.bb @@ -30,6 +30,7 @@ SRC_URI = "${KERNELORG_MIRROR}/linux/utils/nfs-utils/${PV}/nfs-utils-${PV}.tar.x file://nfs-mountd.service \ file://nfs-statd.service \ file://nfs-utils-Do-not-pass-CFLAGS-to-gcc-while-building.patch \ + file://nfs-utils-debianize-start-statd.patch \ " SRC_URI[md5sum] = "8de676b9ff34b8f9addc1d0800fabdf8" -- cgit 1.2.3-korg