From 787e6ce460119ee74b70a408da172dfec9db6539 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Tue, 26 Oct 2004 13:01:22 +0000 Subject: newly created raids must have a fs_type (this was dropped in rev 1.45, it was an error) --- perl-install/raid.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/perl-install/raid.pm b/perl-install/raid.pm index 22c60e787..acbee3607 100644 --- a/perl-install/raid.pm +++ b/perl-install/raid.pm @@ -19,6 +19,7 @@ sub new { my ($raids, %opts) = @_; my $md_part = { %opts }; add2hash_($md_part, { 'chunk-size' => '64', disks => [], + fs_type => 'ext3', device => 'md' . int(@$raids), notFormatted => 1, level => 1 }); push @$raids, $md_part; -- cgit v1.2.1