1
0
mirror of synced 2026-01-20 01:25:09 +00:00

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

Use "defaults" when mounting reiserfs - closes: #379023
This commit is contained in:
steve 2006-07-21 20:06:51 +00:00
parent 59070ac212
commit acf1d59116

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