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