]> git.pld-linux.org Git - packages/nfs-utils.git/commitdiff
- rename
authorJan Rękorajski <baggins@pld-linux.org>
Tue, 8 Feb 2000 15:13:51 +0000 (15:13 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    nfsfs.init -> 1.1

nfsfs.init [new file with mode: 0644]

diff --git a/nfsfs.init b/nfsfs.init
new file mode 100644 (file)
index 0000000..4c04a11
--- /dev/null
@@ -0,0 +1,74 @@
+#!/bin/sh
+#
+# nfsfs         Mount NFS filesystems.
+#
+# Version:      @(#) /etc/init.d/skeleton 1.01 26-Oct-1993
+#
+# Author:       Miquel van Smoorenburg, <miquels@drinkel.nl.mugnet.org>
+#
+# chkconfig: 345 15 95
+# description: Mounts and unmounts all Network File System (NFS) \
+#              mount points.
+#
+# $Id$
+
+# Source networking configuration.
+if [ ! -f /etc/sysconfig/network ]; then
+    exit 0
+fi
+
+# Source function library.
+. /etc/rc.d/init.d/functions
+
+. /etc/sysconfig/network
+
+# Check that networking is up.
+if [ "${NETWORKING}" = "no" ]; then
+       echo "WARNING: Networking is down. NFS lockd and statd can't be run"
+        exit 1
+fi
+
+# See how we were called.
+case "$1" in
+  start)
+       show "Mounting NFS filesystems"
+       busy
+       mount -a -t nfs
+       deltext
+       ok
+       touch /var/lock/subsys/nfsfs
+       ;;
+  stop)
+       show "Unmounting NFS filesystems"
+       busy
+       umount -a -t nfs
+       deltext
+       ok
+       rm -f /var/lock/subsys/nfsfs
+       ;;
+  status)
+       if [ -f /proc/mounts ] ; then
+               echo "Configured NFS mountpoints:"
+               grep -v '^#' /etc/fstab | \
+                 awk '{ if ($3 ~ /^nfs$/ && $4 !~ /noauto/) print $2}'
+               echo "Active NFS mountpoints:"
+               grep -v '^#' /proc/mounts | \
+                 awk '{ if ($3 ~ /^nfs$/ && $4 !~ /noauto/) print $2}'
+       else
+               echo "/proc filesystem unavailable"
+       fi
+       ;;
+  restart)
+       $0 stop
+       $0 start
+       ;;
+  reload)
+       mount -a -t nfs
+       ;;
+  *)
+       echo "Usage: $0 {start|stop|restart|reload|status}"
+       exit 1
+esac
+
+exit 0
+
This page took 0.044306 seconds and 4 git commands to generate.