aboutsummaryrefslogtreecommitdiff
path: root/netfs
diff options
context:
space:
mode:
authorJudd Vinet <judd@archlinux.org>2005-03-24 18:53:37 +0000
committerJudd Vinet <judd@archlinux.org>2005-03-24 18:53:37 +0000
commitc4a367e15b1bf0c9814a674c0a55084aa714245a (patch)
treee1675c2ecd54b6d29399a3c2c2e144b79840fe55 /netfs
parent8b862a2073ad6fe7303a4dbbe7d7316a60db1147 (diff)
downloadinitscripts-c4a367e15b1bf0c9814a674c0a55084aa714245a.tar.xz
added CIFS to netfs script
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