diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-10-26 13:01:22 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-10-26 13:01:22 +0000 |
commit | 787e6ce460119ee74b70a408da172dfec9db6539 (patch) | |
tree | b71c2f1d148cddf9d5c18746afab1f900de47833 | |
parent | 89ec7a1ae086d06c2e2db02bde14567b613f5a7c (diff) | |
download | drakx-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)
-rw-r--r-- | perl-install/raid.pm | 1 |
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; |