diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-09-20 22:35:01 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-09-20 22:35:01 +0000 |
commit | 22b5945c265941c89f07bdf543f4c161f776b593 (patch) | |
tree | 66f1871bba435face3773cf83e163af9ba0952d1 | |
parent | 0d7f89212f4f839156b58c4f6d0cc8962b85d124 (diff) | |
download | drakx-22b5945c265941c89f07bdf543f4c161f776b593.tar drakx-22b5945c265941c89f07bdf543f4c161f776b593.tar.gz drakx-22b5945c265941c89f07bdf543f4c161f776b593.tar.bz2 drakx-22b5945c265941c89f07bdf543f4c161f776b593.tar.xz drakx-22b5945c265941c89f07bdf543f4c161f776b593.zip |
(choosePartitionsToFormat): do not propose check bad blocks for xfs and jfs
-rw-r--r-- | perl-install/install_steps_interactive.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 34172a058..6c504a4ea 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -394,7 +394,7 @@ sub choosePartitionsToFormat { ({ text => partition_table::description($e), type => 'bool', val => \$e->{toFormatTmp} - }, if_(!isLoopback($_) && !isThisFs("reiserfs", $_), { + }, if_(!isLoopback($_) && !isThisFs("reiserfs", $_) && !isThisFs("xfs", $_) && !isThisFs("jfs", $_), { text => partition_table::description($e), type => 'bool', advanced => 1, disabled => sub { !$e->{toFormatTmp} }, val => \$e->{toFormatCheck} |