diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2010-05-05 19:14:55 -0400 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2010-05-05 19:14:55 -0400 |
commit | d8d5e511a275f76579ddbdc2820304d960d49903 (patch) | |
tree | e1ddb906b8aa44adca2712e3a095b79a8a0830e3 | |
parent | 7a31647e979d2f2156f31d5db7f8c9337d58a2fa (diff) | |
download | pfsense-d8d5e511a275f76579ddbdc2820304d960d49903.zip pfsense-d8d5e511a275f76579ddbdc2820304d960d49903.tar.gz |
Use mount -a instead of -uw Ticket #444
-rwxr-xr-x | etc/rc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -66,7 +66,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 -uw /) # If /conf is a directory, convert it to a symlink # to /cf/conf |