diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install2.pm | 4 | ||||
-rw-r--r-- | perl-install/install_steps.pm | 8 |
2 files changed, 11 insertions, 1 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm index 599e7ffb7..220114975 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -140,6 +140,10 @@ 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); } } diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 1a9f8aa70..f47cc8c8a 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -197,7 +197,7 @@ sub doPartitionDisksAfter { fs::set_removable_mntpoints($o->{all_hds}); fs::mount_options::set_all_default($o->{all_hds}, %$o, lang::fs_options($o->{locale})) - if !$o->{isUpgrade} || $o->{isUpgrade} =~ /redhat|conectiva/; + if !$o->{isUpgrade}; $o->{fstab} = [ fs::get::fstab($o->{all_hds}) ]; @@ -397,6 +397,12 @@ sub beforeInstallPackages { upgrading_redhat(); } + if ($o->{isUpgrade} =~ /redhat|conectiva/) { + #- to ensure supermount is removed for cds + fs::mount_options::set_all_default($o->{all_hds}, %$o, lang::fs_options($o->{locale})); + } + + #- some packages need such files for proper installation. install_any::write_fstab($o); |