diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-09-07 00:19:59 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-09-07 00:19:59 +0000 |
commit | 87207782fdbfdc949008b5badc7c631ee1d58c21 (patch) | |
tree | 2f79a69ba1c59705f21301c0832b1eb48c33cec1 /etc/rc | |
parent | cc298e8529a3708e6e51f63c709c97b4082da46f (diff) | |
download | pfsense-87207782fdbfdc949008b5badc7c631ee1d58c21.zip pfsense-87207782fdbfdc949008b5badc7c631ee1d58c21.tar.gz |
Try to mount / and /cf manually. If we do a mount -w -a then it hangs ont he memory disk!?
Diffstat (limited to 'etc/rc')
-rwxr-xr-x | etc/rc | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -43,7 +43,10 @@ fi /sbin/conscontrol mute off >/dev/null # Mount all. If it fails run a fsck. -/sbin/mount -w -a || /sbin/fsck -y +/sbin/mount -w / || /sbin/fsck -y +if grep cf test.txt; then + /sbin/mount -w /cf || /sbin/fsck -y +fi if [ "$PLATFORM" = "cdrom" ] ; then echo "No swap on ${PLATFORM}" |