projects
/
nfs-utils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (from parent 1:
0e6df49
)
Only use rpcbind's rpcinfo when it's available
author
Luk Claes
<luk@debian.org>
Sat, 18 Jun 2011 08:50:58 +0000
(10:50 +0200)
committer
Luk Claes
<luk@debian.org>
Sat, 18 Jun 2011 08:50:58 +0000
(10:50 +0200)
debian/nfs-common.init
patch
|
blob
|
history
diff --git
a/debian/nfs-common.init
b/debian/nfs-common.init
index
9027410
..
5e30d95
100644
(file)
--- 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
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
fi
-
start-stop-daemon --start --oknodo --quiet \
--pidfile /var/run/rpc.statd.pid \
--exec $PREFIX/sbin/rpc.statd -- $STATDOPTS
start-stop-daemon --start --oknodo --quiet \
--pidfile /var/run/rpc.statd.pid \
--exec $PREFIX/sbin/rpc.statd -- $STATDOPTS