hc
2024-10-12 a5969cabbb4660eab42b6ef0412cbbd1200cf14d
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#!/bin/sh
### BEGIN INIT INFO
# Provides:          mountnfs
# Required-Start:    $local_fs $network $rpcbind
# Required-Stop:
# Default-Start:     S
# Default-Stop:
### END INIT INFO
 
#
#    Run in a subshell because of I/O redirection.
#
test -f /etc/fstab && (
 
#
#    Read through fstab line by line. If it is NFS, set the flag
#    for mounting NFS filesystems. If any NFS partition is found and it
#    not mounted with the nolock option, we start the rpcbind.
#
rpcbind=no
mount_nfs=no
mount_smb=no
mount_ncp=no
mount_cifs=no
while read device mountpt fstype options
do
   case "$device" in
       ""|\#*)
           continue
           ;;
   esac
 
   case "$options" in
       *noauto*)
           continue
           ;;
   esac
 
   if test "$fstype" = nfs
   then
       mount_nfs=yes
       case "$options" in
           *nolock*)
               ;;
           *)
               rpcbind=yes
               ;;
       esac
   fi
   if test "$fstype" = smbfs
   then
       mount_smb=yes
   fi
   if test "$fstype" = ncpfs
   then
       mount_ncp=yes
   fi
   if test "$fstype" = cifs
   then
       mount_cifs=yes
   fi
done
 
exec 0>&1
 
if test "$rpcbind" = yes
then
   if test -x /usr/sbin/rpcbind
   then
       service rpcbind status > /dev/null
       if [ $? != 0 ]; then
           echo -n "Starting rpcbind..."
           start-stop-daemon --start --quiet --exec /usr/sbin/rpcbind
           sleep 2
       fi
   fi
fi
 
if test "$mount_nfs" = yes || test "$mount_smb" = yes || test "$mount_ncp" = yes || test "$mount_cifs" = yes
then
   echo "Mounting remote filesystems..."
   test "$mount_nfs" = yes && mount -a -t nfs
   test "$mount_smb" = yes && mount -a -t smbfs
   test "$mount_ncp" = yes && mount -a -t ncpfs
   test "$mount_cifs" = yes && mount -a -t cifs
fi
 
) < /etc/fstab
 
: exit 0