summaryrefslogtreecommitdiffstats
path: root/perl-install/raid.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-01-22 16:29:02 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-01-22 16:29:02 +0000
commit5eabc0cdf002227c7b346e16639e86bd2bc802dd (patch)
treea35d1daf01735f15be97c445eca4414afe325a08 /perl-install/raid.pm
parent91d28380c3f7135fa5b7d64fa251b37c772994ae (diff)
downloaddrakx-5eabc0cdf002227c7b346e16639e86bd2bc802dd.tar
drakx-5eabc0cdf002227c7b346e16639e86bd2bc802dd.tar.gz
drakx-5eabc0cdf002227c7b346e16639e86bd2bc802dd.tar.bz2
drakx-5eabc0cdf002227c7b346e16639e86bd2bc802dd.tar.xz
drakx-5eabc0cdf002227c7b346e16639e86bd2bc802dd.zip
defaults to ext3 instead of ext2
Diffstat (limited to 'perl-install/raid.pm')
-rw-r--r--perl-install/raid.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/raid.pm b/perl-install/raid.pm
index 0d0a8720a..7096a203b 100644
--- a/perl-install/raid.pm
+++ b/perl-install/raid.pm
@@ -21,7 +21,7 @@ sub nb {
sub new {
my ($raids, @parts) = @_;
my $nb = @$raids;
- $raids->[$nb] = { 'chunk-size' => "64k", type => 0x83, disks => [ @parts ], device => "md$nb", notFormatted => 1, level => 1 };
+ $raids->[$nb] = { 'chunk-size' => "64k", type => 0x483, disks => [ @parts ], device => "md$nb", notFormatted => 1, level => 1 };
foreach my $part (@parts) {
$part->{raid} = $nb;
delete $part->{mntpoint};