From 673d64a2a20eaa62e746f1e80732a2bb4899bbec Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Sun, 26 Jun 2005 20:29:06 +0000 Subject: [PATCH] * Full path to mount and fsck * Try mounting / fsck'ing twice if necessary --- etc/rc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/rc b/etc/rc index 15c5de8445..d591e08dde 100755 --- a/etc/rc +++ b/etc/rc @@ -36,7 +36,7 @@ fi /sbin/conscontrol mute off >/dev/null # Mount all. If it fails run a fsck. -/sbin/mount -a || fsck -y && mount -a +/sbin/mount -a || /sbin/fsck -y && /sbin/mount -a || /sbin/fsck -y if [ ! "$PLATFORM" = "cdrom" ]; then SWAPDEVICE=`cat /etc/fstab | grep swap | cut -f1`