X-Git-Url: https://git.decadent.org.uk/gitweb/?p=nfs-utils.git;a=blobdiff_plain;f=debian%2Fnfs-common.init;fp=debian%2Fnfs-common.init;h=32e89c8373e783cfdcd6b55f3108658ad7b53c85;hp=9f5ebf5bbca87ae2e67cdd453b449e0aa9a771ce;hb=db454c10e20488033aa5c03722c4bd8167206cf7;hpb=cf7a0b483233d4d65bf3e020e2e2504b9b75d36a diff --git a/debian/nfs-common.init b/debian/nfs-common.init index 9f5ebf5..32e89c8 100644 --- a/debian/nfs-common.init +++ b/debian/nfs-common.init @@ -136,6 +136,16 @@ case "$1" in if [ "$NEED_STATD" = yes ]; then log_progress_msg "statd" + + # See if portmap or rpcbind are running + lsof -i :111 >/dev/null + RET=$? + if [ $RET != 0 ]; then + echo + log_warning_msg "Not starting: portmap daemon is not running" + exit 0 + fi + start-stop-daemon --start --oknodo --quiet \ --exec $PREFIX/sbin/rpc.statd -- $STATDOPTS RET=$?