[Lunar-commits] r17221 - moonbase/trunk/filesys/e2fsprogs/init.d
Moritz Heiber
moe at lunar-linux.org
Tue Nov 8 12:56:23 UTC 2005
Author: moe
Date: 2005-11-08 12:56:22 +0000 (Tue, 08 Nov 2005)
New Revision: 17221
Modified:
moonbase/trunk/filesys/e2fsprogs/init.d/mount
Log:
VITAL fixes .. , != | .. gee nestu!
Modified: moonbase/trunk/filesys/e2fsprogs/init.d/mount
===================================================================
--- moonbase/trunk/filesys/e2fsprogs/init.d/mount 2005-11-08 12:48:19 UTC (rev 17220)
+++ moonbase/trunk/filesys/e2fsprogs/init.d/mount 2005-11-08 12:56:22 UTC (rev 17221)
@@ -221,7 +221,7 @@
exit_status=`run_with_msg_and_exit_codes " * Checking all file systems : " "fsck -A -y" "0" "1" ""`
case ${exit_status} in
- 0,1) # exited fine ( 0 ), or errors were fixed (1)
+ 0|1) # exited fine ( 0 ), or errors were fixed (1)
rm -f /forcefsck
;;
*)
@@ -269,7 +269,7 @@
esac
case ${DEVICE} in
- usbdevfs,usbfs)
+ usbdevfs|usbfs)
run_with_msg " * Trying to modprobe usbcore for ${DEVICE} : " "modprobe usbcore"
;;
esac
@@ -300,7 +300,7 @@
do
case ${FS} in
- nfs,smbfs) # we don't do net filesystems
+ nfs|smbfs) # we don't do net filesystems
continue
;;
esac
More information about the Lunar-commits
mailing list