From acf1d59116dcd2ae33c606f56d6cbb1ad4e0e39f Mon Sep 17 00:00:00 2001 From: steve Date: Fri, 21 Jul 2006 20:06:51 +0000 Subject: [PATCH] 2006-07-21 20:06:51 by steve Use "defaults" when mounting reiserfs - closes: #379023 --- hooks/ubuntu/90-make-fstab | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hooks/ubuntu/90-make-fstab b/hooks/ubuntu/90-make-fstab index afc06b3..801e1e9 100755 --- a/hooks/ubuntu/90-make-fstab +++ b/hooks/ubuntu/90-make-fstab @@ -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