From 4e01e0a096880cbff37ba542a66838b3115355bc Mon Sep 17 00:00:00 2001 From: Luk Claes Date: Sat, 18 Jun 2011 10:50:58 +0200 Subject: [PATCH 1/1] Only use rpcbind's rpcinfo when it's available --- debian/nfs-common.init | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/debian/nfs-common.init b/debian/nfs-common.init index 9027410..5e30d95 100644 --- a/debian/nfs-common.init +++ b/debian/nfs-common.init @@ -139,14 +139,15 @@ case "$1" in log_progress_msg "statd" # See if rpcbind is running - /usr/sbin/rpcinfo -p >/dev/null 2>&1 - RET=$? - if [ $RET != 0 ]; then - echo - log_warning_msg "Not starting: portmapper is not running" - exit 0 + if [ -x /usr/sbin/rpcinfo ]; then + /usr/sbin/rpcinfo -p >/dev/null 2>&1 + RET=$? + if [ $RET != 0 ]; then + echo + log_warning_msg "Not starting: portmapper is not running" + exit 0 + fi fi - start-stop-daemon --start --oknodo --quiet \ --pidfile /var/run/rpc.statd.pid \ --exec $PREFIX/sbin/rpc.statd -- $STATDOPTS -- 2.39.2