diff options
author | Dave Reisner <dreisner@archlinux.org> | 2012-06-12 19:38:42 -0400 |
---|---|---|
committer | Dave Reisner <dreisner@archlinux.org> | 2012-06-12 19:38:42 -0400 |
commit | da385eb74e5f0f1ecf04a762cae221e69c68bbc6 (patch) | |
tree | 6d093877d9c26ae03c643be29faeeb4f85a5c8cb | |
parent | dd4843aa1525716c3a9916042f2de472eb0f064c (diff) |
rc.sysinit: look for correct root fsck marker
This has been broken since its was added back in 3dbbd1e2.
Signed-off-by: Dave Reisner <dreisner@archlinux.org>
-rwxr-xr-x | rc.sysinit | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -26,7 +26,7 @@ mountpoint -q /dev/shm || mount /dev/shm &>/dev/null || mountpoint -q /proc/sys/fs/binfmt_misc || mount /proc/sys/fs/binfmt_misc &>/dev/null || mount -t binfmt_misc binfmt /proc/sys/fs/binfmt_misc -if [[ ! -e /run/initramfs/fsck-root ]]; then +if [[ ! -e /run/initramfs/root-fsck ]]; then # remount root ro to allow for fsck later on, we remount now to # make sure nothing can open files rw on root which would block a remount findmnt / --options ro &>/dev/null || |