summaryrefslogtreecommitdiffstats
path: root/perl-install/fs/partitioning_wizard.pm
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2015-03-27 11:25:04 -0400
committerThierry Vignaud <thierry.vignaud@gmail.com>2015-04-03 21:04:02 +0200
commit5cc6ac8d00328f695a529bcbf81efa86412b8341 (patch)
tree7e18ca9fc896cad5d78a9e892957b12d1110a5e3 /perl-install/fs/partitioning_wizard.pm
parentbf98500a404bd350f921a1ba70e1fb10d516ea3a (diff)
downloaddrakx-5cc6ac8d00328f695a529bcbf81efa86412b8341.tar
drakx-5cc6ac8d00328f695a529bcbf81efa86412b8341.tar.gz
drakx-5cc6ac8d00328f695a529bcbf81efa86412b8341.tar.bz2
drakx-5cc6ac8d00328f695a529bcbf81efa86412b8341.tar.xz
drakx-5cc6ac8d00328f695a529bcbf81efa86412b8341.zip
do not offer to select RAID as it result in a crash
rationale: we only show top storage devices which are the ones that work Fix mga#5800
Diffstat (limited to 'perl-install/fs/partitioning_wizard.pm')
-rw-r--r--perl-install/fs/partitioning_wizard.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs/partitioning_wizard.pm b/perl-install/fs/partitioning_wizard.pm
index ab897c209..1d33c8bfb 100644
--- a/perl-install/fs/partitioning_wizard.pm
+++ b/perl-install/fs/partitioning_wizard.pm
@@ -503,7 +503,7 @@ sub main {
my $mainbox = Gtk3::VBox->new;
my @kinds = map { diskdrake::hd_gtk::hd2kind($_) } sort { $a->{is_removable} <=> $b->{is_removable} } @{ $all_hds->{hds} };
- push @kinds, diskdrake::hd_gtk::raid2real_kind($_) foreach @{$all_hds->{raids}};
+ #push @kinds, diskdrake::hd_gtk::raid2real_kind($_) foreach @{$all_hds->{raids}};
push @kinds, map { diskdrake::hd_gtk::lvm2kind($_) } @{$all_hds->{lvms}};
my $hdchoice = Gtk3::HBox->new;