diff options
author | Pascal Rigaux <pixel@mandriva.com> | 1999-11-09 03:02:37 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 1999-11-09 03:02:37 +0000 |
commit | 950fe7395621dc21885ac3e1280e007248646608 (patch) | |
tree | e3016a95189ee4c75a05b816d91dd22f071bd2c0 /perl-install/install_steps.pm | |
parent | c7df31b71335c18d60cdb8a7f5fee24d56cca4b8 (diff) | |
download | drakx-950fe7395621dc21885ac3e1280e007248646608.tar drakx-950fe7395621dc21885ac3e1280e007248646608.tar.gz drakx-950fe7395621dc21885ac3e1280e007248646608.tar.bz2 drakx-950fe7395621dc21885ac3e1280e007248646608.tar.xz drakx-950fe7395621dc21885ac3e1280e007248646608.zip |
no_comment
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 3ec11a021..b537263f7 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -15,6 +15,7 @@ use modules; use run_program; use lilo; use lang; +use raid; use keyboard; use printer; use pkgs; @@ -166,7 +167,7 @@ sub choosePartitionsToFormat($$) { sub formatPartitions { my $o = shift; foreach (@_) { - fs::format_part($_) if $_->{toFormat}; + raid::format_part($o->{raid}, $_) if $_->{toFormat}; } } |