diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-09-13 16:11:27 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-09-13 16:11:27 +0000 |
commit | fe22c48f627861309c0eb3af46b4af674e941b95 (patch) | |
tree | 9da82d277205ba33250bda1488eeea1379f94fd3 /perl-install/install2.pm | |
parent | 0fc52b8290d73f58a4115329902a205a3c517a43 (diff) | |
download | drakx-fe22c48f627861309c0eb3af46b4af674e941b95.tar drakx-fe22c48f627861309c0eb3af46b4af674e941b95.tar.gz drakx-fe22c48f627861309c0eb3af46b4af674e941b95.tar.bz2 drakx-fe22c48f627861309c0eb3af46b4af674e941b95.tar.xz drakx-fe22c48f627861309c0eb3af46b4af674e941b95.zip |
it seems we don't need re-ordering steps anymore for upgrading
(otherwise we would need to have miscellaneous before doPartitionDisks so that useSupermount is correctly set)
Diffstat (limited to 'perl-install/install2.pm')
-rw-r--r-- | perl-install/install2.pm | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm index 8c1f58525..b128b9d38 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -143,10 +143,6 @@ sub selectInstallClass { installStepsCall($o, $auto, 'selectInstallClass'); if ($o->{isUpgrade}) { - @{$o->{orderedSteps}} = uniq(map { - $_ eq 'selectInstallClass' ? ($_, 'doPartitionDisks', 'formatPartitions') : $_; - } @{$o->{orderedSteps}}); - $o->{modules_conf}->merge_into(modules::any_conf->read); } } |