diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2010-05-19 21:19:24 -0400 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2010-05-19 21:19:24 -0400 |
commit | 69490b5525dd8a79f684b780f025cf3ea63964f0 (patch) | |
tree | ce77d813398c4d9cf60944c6afbaf5c5243bed2a /etc | |
parent | c4995e627e26d2241b6dccc0e81137e5c5b37772 (diff) | |
download | pfsense-69490b5525dd8a79f684b780f025cf3ea63964f0.zip pfsense-69490b5525dd8a79f684b780f025cf3ea63964f0.tar.gz |
Handle mounting of extra filesystems correctly. Ticket #444
Diffstat (limited to 'etc')
-rwxr-xr-x | etc/rc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -28,7 +28,7 @@ echo -n "Mounting filesystems..." # Mount /. If it fails run a fsck. if [ ! "$PLATFORM" = "cdrom" ] ; then - /sbin/mount -uw / || (/sbin/fsck -fy; /sbin/mount -uw /) + /sbin/mount -a || (/sbin/fsck -fy; /sbin/mount -a) # If /conf is a directory, convert it to a symlink # to /cf/conf |