Rev 8 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
#!/bin/bash## netfs Mount network filesystems.## Authors: Bill Nottingham <notting@redhat.com># AJ Lewis <alewis@redhat.com># Miquel van Smoorenburg, <miquels@drinkel.nl.mugnet.org>## chkconfig: 345 25 75# description: Mounts and unmounts all Network File System (NFS), \# CIFS (Lan Manager/Windows), and NCP (NetWare) mount points.### BEGIN INIT INFO# Provides: $remote_fs# Short-Description: Mount and unmount network filesystems.# Description: Mount and unmount network filesystems.### END INIT INFO[ -f /etc/sysconfig/network ] || exit 0. /etc/init.d/functions. /etc/sysconfig/networkNFSFSTAB=$(LC_ALL=C awk '!/^#/ && $3 ~ /^nfs/ && $3 != "nfsd" && $4 !~ /noauto/ { print $2 }' /etc/fstab)CIFSFSTAB=$(LC_ALL=C awk '!/^#/ && $3 == "cifs" && $4 !~ /noauto/ { print $2 }' /etc/fstab)NCPFSTAB=$(LC_ALL=C awk '!/^#/ && $3 == "ncpfs" && $4 !~ /noauto/ { print $2 }' /etc/fstab)GLUSTERFSFSTAB=$(LC_ALL=C awk '!/^#/ && $3 == "glusterfs" && $4 !~ /noauto/ { print $2 }' /etc/fstab)NETDEVFSTAB=$(LC_ALL=C awk '!/^#/ && $4 ~/_netdev/ && $4 !~ /noauto/ { print $1 }' /etc/fstab)NFSMTAB=$(LC_ALL=C awk '$3 ~ /^nfs/ && $3 != "nfsd" && $2 != "/" { print $2 }' /proc/mounts)CIFSMTAB=$(LC_ALL=C awk '$3 == "cifs" { print $2 }' /proc/mounts)NCPMTAB=$(LC_ALL=C awk '$3 == "ncpfs" { print $2 }' /proc/mounts)GLUSTERFSMTAB=$(LC_ALL=C awk '$3 == "fuse.glusterfs" { print $2 }' /proc/mounts)NETDEVMTAB=$(LC_ALL=C awk '$4 ~ /_netdev/ && $2 != "/" { print $2 }' /etc/mtab)# See how we were called.case "$1" instart)[ ! -f /var/lock/subsys/network ] && ! nm-online -x >/dev/null 2>&1 && exit 0[ "$EUID" != "0" ] && exit 4[ -n "$NFSFSTAB" ] &&{[ ! -f /var/lock/subsys/rpcbind ] && service rpcbind startecho $"NFS filesystems queued to be mounted"}[ -n "$CIFSFSTAB" ] && echo $"CIFS filesystems queued to be mounted"[ -n "$NCPFSTAB" ] && echo $"NCP filesystems queued to be mounted"[ -n "$GLUSTERFSFSTAB" ] && echo $"GLUSTERFS filesystems queued to be mounted"[ -n "$NETDEVFSTAB" ] &&{if [ -f /etc/mdadm.conf ] && [ -x /sbin/mdadm ]; then/sbin/mdadm -A -sfiif [ -f /etc/multipath.conf -a -x /sbin/multipath ]; thenmodprobe dm-multipath >/dev/null 2>&1/sbin/multipath -v 0if [ -x /sbin/kpartx ]; then/sbin/dmsetup ls --target multipath --exec "/sbin/kpartx -a -p p"fifiif [ -x /sbin/lvm ]; thenif /sbin/lvm vgscan > /dev/null 2>&1 ; thenaction $"Setting up Logical Volume Management:" /sbin/lvm vgchange -a ay --ignoreskippedclusterfifiif [ -f /etc/crypttab ]; theninit_crypto 1fiSTRING=$"Checking network-attached filesystems"echo $STRINGfsck -A -T -M -a -t opts=_netdevrc=$?if [ "$rc" -eq "0" ]; thensuccess "$STRING"echoelif [ "$rc" -eq "1" ]; thenpassed "$STRING"echofiif [ "$rc" -gt 1 ]; thenif [ -x /bin/plymouth ] && /bin/plymouth --ping ; then/bin/plymouth --hide-splashfifailure "$STRING"tty >/dev/null 2>&1 || exit 1echoechoecho $"*** An error occurred during the file system check."echo $"*** Dropping you to a shell; the system will reboot"echo $"*** when you leave the shell."str=$"(Repair filesystem)"PS1="$str \# # "; export PS1[ "$SELINUX" = "1" ] && disable_selinuxsuloginshutdown -r nowfi}touch /var/lock/subsys/netfs# The 'no' applies to all listed filesystem types. See mount(8).action $"Mounting filesystems: " mount -a -t nogfs2;;stop)# Unmount loopback stuff first[ "$EUID" != "0" ] && exit 4__umount_loopback_loopif [ -n "$NETDEVMTAB" ]; then__umount_loop '$4 ~ /_netdev/ && $2 != "/" {print $2}' \/etc/mtab \$"Unmounting network block filesystems: " \$"Unmounting network block filesystems (retry): "fiif [ -n "$GLUSTERFSMTAB" ]; then__umount_loop '$3 ~ /^glusterfs/ {print $2}' \/etc/mtab \$"Unmounting GLUSTERFS filesystems: " \$"Unmounting GLUSTERFS filesystems (retry): "fiif [ -n "$NFSMTAB" ]; thenSTRING=$"Unmounting NFS filesystems:"echo -n $STRINGnfs_fs=$(LC_ALL=C awk '/^#/ {next} $3 ~ /^nfs/ && $3 != "nfsd" && $2 != "/" {print $2}' /proc/mounts | sort -r)if [ -n "$nfs_fs" ]; then# create a device id referencedevs=$(stat -c "%d" $nfs_fs)# the lazy umountfor fs in $nfs_fs ; doumount -l $fsdone# find fds that don't start with /, are not sockets or pipes or other.# these are potentially detached fdsdetached_fds=$(find /proc/ -regex '/proc/[0-9]+/fd/.*' -printf "%p %l\n" 2>/dev/null |\grep -Ev '/proc/[0-9]+/fd/[0-9]+ (/.*|inotify|\[.+\]|(socket|pipe):\[[0-9]+\])')# check each detached fd to see if it has the same device# as one of our lazy umounted filesystemskill_list=[ -n "$detached_fds" ] && while read fdline; dofd=${fdline%% *}pid=$(echo $fdline | sed -r 's/\/proc\/([0-9]+).+/\1/')fd_dev=$(stat -L -c "%d" $fd)for dev in $devs ; do[ "$dev" = "$fd_dev" ] && kill_list+="$pid "donedone <<< "$detached_fds"[ -n "$kill_list" ] && kill $kill_list# run a little wait/check loop for procs to exitcount=4while [ "$count" -gt 0 ] ; do[ -z "$kill_list" ] && breakcount=$(($count-1))usleep 500000remaining=for pid in $kill_list ; do[ -d "/proc/$pid" ] && remaining+="$pid "donekill_list=$remainingdone# try to finish the job:if [ -n "$kill_list" ] ; thenkill -9 $kill_listusleep 500000# last checkremaining=for pid in $kill_list ; do[ -d "/proc/$pid" ] && remaining+="$pid "donefi[ -z "$remaining" ] && success "$STRING" || failure "$STRING"echofifi[ -n "$CIFSMTAB" ] && action $"Unmounting CIFS filesystems: " umount -a -t cifs[ -n "$NCPMTAB" ] && action $"Unmounting NCP filesystems: " umount -a -t ncp,ncpfsrm -f /var/lock/subsys/netfs;;status)if [ -f /proc/mounts ] ; then[ -n "$NFSFSTAB" ] && {echo $"Configured NFS mountpoints: "for fs in $NFSFSTAB; do echo $fs ; done}[ -n "$CIFSFSTAB" ] && {echo $"Configured CIFS mountpoints: "for fs in $CIFSFSTAB; do echo $fs ; done}[ -n "$NCPFSTAB" ] && {echo $"Configured NCP mountpoints: "for fs in $NCPFSTAB; do echo $fs ; done}[ -n "$NETDEVFSTAB" ] && {echo $"Configured network block devices: "for fs in $NETDEVFSTAB; do echo $fs ; done}[ -n "$NFSMTAB" ] && {echo $"Active NFS mountpoints: "for fs in $NFSMTAB; do echo $fs ; done}[ -n "$CIFSMTAB" ] && {echo $"Active CIFS mountpoints: "for fs in $CIFSMTAB; do echo $fs ; done}[ -n "$NCPMTAB" ] && {echo $"Active NCP mountpoints: "for fs in $NCPMTAB; do echo $fs ; done}[ -n "$GLUSTERFSMTAB" ] && {echo $"Active GLUSTERFS mountpoints: "for fs in $GLUSTERFSMTAB; do echo $fs ; done}[ -n "$NETDEVMTAB" ] && {echo $"Active network block devices: "for fs in $NETDEVMTAB; do echo $fs ; done}elseecho $"/proc filesystem unavailable"fi[ -r /var/lock/subsys/netfs ] || exit 3;;restart)$0 stop$0 startexit $?;;reload)$0 startexit $?;;*)echo $"Usage: $0 {start|stop|restart|reload|status}"exit 2esacexit 0