diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-03-11 01:11:06 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-03-11 01:11:06 +0000 |
commit | f39f307ded336dddb9a4767b1128b82471446412 (patch) | |
tree | 1b32019b5547e9706346c48fb34f8dfa062af865 /perl-install/install_steps.pm | |
parent | 39b16a6249eb865a2319a8e3cb1e4270e6fec539 (diff) | |
download | drakx-backup-do-not-use-f39f307ded336dddb9a4767b1128b82471446412.tar drakx-backup-do-not-use-f39f307ded336dddb9a4767b1128b82471446412.tar.gz drakx-backup-do-not-use-f39f307ded336dddb9a4767b1128b82471446412.tar.bz2 drakx-backup-do-not-use-f39f307ded336dddb9a4767b1128b82471446412.tar.xz drakx-backup-do-not-use-f39f307ded336dddb9a4767b1128b82471446412.zip |
no_comment
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 6004096b1..a867b8155 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -165,11 +165,9 @@ sub choosePartitionsToFormat($$) { } } -sub formatPartitions { - my $o = shift; - foreach (@_) { - fs::format_part($o->{raid}, $_) if $_->{toFormat}; - } +sub formatMountPartitions { + my ($o) = @_; + fs::formatMount_all($o->{raid}, $o->{fstab}, $o->{prefix}); } #------------------------------------------------------------------------------ |