diff options
author | Bill Nottingham <notting@redhat.com> | 2008-03-12 12:21:14 -0400 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2008-03-12 12:21:14 -0400 |
commit | 485377354f5c4119d9b93f585ad228bdf4e0254a (patch) | |
tree | 9a8e5fe0629796a9fe9c9c7e2dd9180e54a10c10 | |
parent | b7d22f168539a22034b3dda39aed795c2192d825 (diff) | |
download | initscripts-485377354f5c4119d9b93f585ad228bdf4e0254a.tar initscripts-485377354f5c4119d9b93f585ad228bdf4e0254a.tar.gz initscripts-485377354f5c4119d9b93f585ad228bdf4e0254a.tar.bz2 initscripts-485377354f5c4119d9b93f585ad228bdf4e0254a.tar.xz initscripts-485377354f5c4119d9b93f585ad228bdf4e0254a.zip |
Umount 'ncp' filesystems as well (#437117)
-rwxr-xr-x | rc.d/init.d/netfs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rc.d/init.d/netfs b/rc.d/init.d/netfs index aef89709..cfe9264c 100755 --- a/rc.d/init.d/netfs +++ b/rc.d/init.d/netfs @@ -112,7 +112,7 @@ case "$1" in fi [ -n "$SMBMTAB" ] && action $"Unmounting SMB filesystems: " umount -a -t smbfs [ -n "$CIFSMTAB" ] && action $"Unmounting CIFS filesystems: " umount -a -t cifs - [ -n "$NCPMTAB" ] && action $"Unmounting NCP filesystems: " umount -a -t ncpfs + [ -n "$NCPMTAB" ] && action $"Unmounting NCP filesystems: " umount -a -t ncp,ncpfs rm -f /var/lock/subsys/netfs ;; status) |