summaryrefslogtreecommitdiffstats
path: root/perl-install/raid.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2004-10-26 13:01:22 +0000
committerPascal Rigaux <pixel@mandriva.com>2004-10-26 13:01:22 +0000
commit787e6ce460119ee74b70a408da172dfec9db6539 (patch)
treeb71c2f1d148cddf9d5c18746afab1f900de47833 /perl-install/raid.pm
parent89ec7a1ae086d06c2e2db02bde14567b613f5a7c (diff)
downloaddrakx-787e6ce460119ee74b70a408da172dfec9db6539.tar
drakx-787e6ce460119ee74b70a408da172dfec9db6539.tar.gz
drakx-787e6ce460119ee74b70a408da172dfec9db6539.tar.bz2
drakx-787e6ce460119ee74b70a408da172dfec9db6539.tar.xz
drakx-787e6ce460119ee74b70a408da172dfec9db6539.zip
newly created raids must have a fs_type (this was dropped in rev 1.45, it was an error)
Diffstat (limited to 'perl-install/raid.pm')
-rw-r--r--perl-install/raid.pm1
1 files changed, 1 insertions, 0 deletions
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;