diff options
Diffstat (limited to 'netfs')
-rwxr-xr-x | netfs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -6,7 +6,7 @@ case "$1" in start) stat_busy "Mounting Network Filesystems" - /bin/mount -a -t nfs,smbfs,codafs,ncpfs,cifs,shfs,fuse,fuseblk + /bin/mount -a -t nfs,nfs4,smbfs,codafs,ncpfs,cifs,shfs,fuse,fuseblk if [ $? -gt 0 ]; then stat_fail else @@ -16,7 +16,7 @@ case "$1" in ;; stop) stat_busy "Unmounting Network Filesystems" - umount -a -t nfs,smbfs,codafs,ncpfs,cifs,shfs,fuse,fuseblk + umount -a -t nfs,nfs4,smbfs,codafs,ncpfs,cifs,shfs,fuse,fuseblk if [ $? -gt 0 ]; then stat_fail else |