summaryrefslogtreecommitdiffstats
path: root/perl-install/diskdrake
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/diskdrake')
-rw-r--r--perl-install/diskdrake/interactive.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/diskdrake/interactive.pm b/perl-install/diskdrake/interactive.pm
index 4eef7b003..0948c9a0c 100644
--- a/perl-install/diskdrake/interactive.pm
+++ b/perl-install/diskdrake/interactive.pm
@@ -285,7 +285,9 @@ sub Done {
return if !$::isStandalone;
$in->ask_yesorno(N("Quit without saving"), N("Quit without writing the partition table?"), 1) or return;
}
- raid::make($all_hds->{raids}, $_) if isRAID($_);
+ }
+ foreach (@{$all_hds->{raids}}) {
+ raid::make($all_hds->{raids}, $_);
}
if (!$::isInstall) {
my $new = fs::fstab_to_string($all_hds);