]> git.decadent.org.uk Git - nfs-utils.git/blobdiff - debian/nfs-common.init
nfs-common.init, nfs-kernel-server.init: Add warning when portmap is not running...
[nfs-utils.git] / debian / nfs-common.init
index 3364207f42d45cc1c1e81b40ecacdbf353b3f775..32e89c8373e783cfdcd6b55f3108658ad7b53c85 100644 (file)
@@ -45,6 +45,11 @@ if [ -f /etc/fstab ]; then
 
     while read DEV MTPT FSTYPE OPTS REST
     do
+       case $DEV in
+           ''|\#*)
+               continue
+               ;;
+       esac
         if [ "$FSTYPE" = "nfs4" ]; then
             AUTO_NEED_IDMAPD=yes
         fi
@@ -131,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=$?
@@ -149,6 +164,7 @@ case "$1" in
        then
            do_modprobe sunrpc
            do_modprobe nfs
+           do_modprobe nfsd
            if do_mount rpc_pipefs $PIPEFS_MOUNTPOINT
            then
                if [ "$NEED_IDMAPD" = yes ]