]> git.decadent.org.uk Git - nfs-utils.git/blobdiff - debian/nfs-common.init
nfs-common.init: Add --pidfile for statd (Closes: #521084)
[nfs-utils.git] / debian / nfs-common.init
index 9f5ebf5bbca87ae2e67cdd453b449e0aa9a771ce..90ac6af379cc48c7f7ef471ef8d571e20515df1e 100644 (file)
@@ -136,7 +136,18 @@ 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 \
+               --pidfile /var/run/rpc.statd.pid \
                --exec $PREFIX/sbin/rpc.statd -- $STATDOPTS
            RET=$?
            if [ $RET != 0 ]; then