diff options
author | Bill Nottingham <notting@redhat.com> | 2004-08-12 16:29:47 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2004-08-12 16:29:47 +0000 |
commit | 903bc93eec508359479d00b11a3e5331a414c40f (patch) | |
tree | 85fef7284b743517f6f1c847b7feac49d97c5993 /rc.d/init.d/network | |
parent | 4b2c27c22e4cf188c443ee1dac16c945c8123bf4 (diff) | |
download | initscripts-903bc93eec508359479d00b11a3e5331a414c40f.tar initscripts-903bc93eec508359479d00b11a3e5331a414c40f.tar.gz initscripts-903bc93eec508359479d00b11a3e5331a414c40f.tar.bz2 initscripts-903bc93eec508359479d00b11a3e5331a414c40f.tar.xz initscripts-903bc93eec508359479d00b11a3e5331a414c40f.zip |
fix nfs unmounting (#129765)
Diffstat (limited to 'rc.d/init.d/network')
-rwxr-xr-x | rc.d/init.d/network | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rc.d/init.d/network b/rc.d/init.d/network index 3dbaaf50..80afd8fc 100755 --- a/rc.d/init.d/network +++ b/rc.d/init.d/network @@ -182,7 +182,7 @@ case "$1" in # and unmount them even if the user didn't turn on netfs if [ "$RUNLEVEL" = "6" -o "$RUNLEVEL" = "0" -o "$RUNLEVEL" = "1" ]; then - NFSMTAB=`LC_ALL=C awk '!/^#/ && $3 == "nfs" { print $2 }' /proc/mounts` + NFSMTAB=`LC_ALL=C awk '!/^#/ && $3 ~ /^nfs/ { print $2 }' /proc/mounts` SMBMTAB=`LC_ALL=C awk '!/^#/ && $3 == "smbfs" { print $2 }' /proc/mounts` NCPMTAB=`LC_ALL=C awk '!/^#/ && $3 == "ncpfs" { print $2 }' /proc/mounts` if [ -n "$NFSMTAB" -o -n "$SMBMTAB" -o -n "$NCPMTAB" ] ; then |