aboutsummaryrefslogtreecommitdiff
path: root/netfs
diff options
context:
space:
mode:
Diffstat (limited to 'netfs')
-rwxr-xr-xnetfs4
1 files changed, 2 insertions, 2 deletions
diff --git a/netfs b/netfs
index 450f21d..105d96f 100755
--- a/netfs
+++ b/netfs
@@ -6,7 +6,7 @@
case "$1" in
start)
stat_busy "Mounting Network Filesystems"
- /bin/mount -a -t nfs,smbfs,codafs,cifs
+ /bin/mount -a -t nfs,smbfs,codafs,cifs,shfs,fuse
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,cifs
+ umount -a -t nfs,smbfs,codafs,cifs,shfs,fuse
if [ $? -gt 0 ]; then
stat_fail
else