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 b42482a..19974d2 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
+ /bin/mount -a -t nfs,smbfs,codafs,cifs
if [ $? -gt 0 ]; then
stat_fail
else
@@ -17,7 +17,7 @@ case "$1" in
stop)
stat_busy "Unmounting network filesystems"
[ ! -z "$PID" ] && kill $PID &> /dev/null
- umount -a -t nfs,smbfs,codafs
+ umount -a -t nfs,smbfs,codafs,cifs
if [ $? -gt 0 ]; then
stat_fail
else