blob: 76eccddca4ea8ff33179af90f8dca49e17f1c702 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
#!/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.
# 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.
[ ${NETWORKING} = "no" ] && exit 0
# See how we were called.
case "$1" in
start)
echo -n "Mounting remote filesystems."
mount -a -t nfs
touch /var/lock/subsys/nfsfs
echo
;;
stop)
echo -n "Unmounting remote filesystems."
umount -a -t nfs
rm -f /var/lock/subsys/nfsfs
echo
;;
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: nfsfs {start|stop|restart|reload|status}"
exit 1
esac
exit 0
|