1
0
mirror of synced 2026-04-28 05:04:57 +00:00

2006-07-21 20:06:08 by steve

Use "defaults" when mounting reiserfs.  Closes: #379023
This commit is contained in:
steve
2006-07-21 20:06:08 +00:00
parent 54b29da3a5
commit 59070ac212

View File

@@ -34,7 +34,7 @@ logMessage Script $0 starting
# Options to mount the root filesystem with, we need to have
# different options for xfs.
#
# The default option works for ext2, ext3, and reiserfs.
# The default option works for ext2 & ext3.
#
options="errors=remount-ro"
@@ -42,6 +42,9 @@ case "${fs}" in
xfs)
options="defaults"
;;
reiserfs)
options="defaults"
;;
esac