diff options
-rw-r--r-- | perl-install/install2.pm | 1 | ||||
-rw-r--r-- | perl-install/install_steps.pm | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm index 1725c799e..7b908a12a 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -230,7 +230,6 @@ sub choosePackages { sub installPackages { my ($auto) = @_; - installStepsCall($o, $auto, 'readBootloaderConfigBeforeInstall'); installStepsCall($o, $auto, 'beforeInstallPackages'); installStepsCall($o, $auto, 'installPackages'); installStepsCall($o, $auto, 'afterInstallPackages'); diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 09b3eaa8e..f8695a026 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -369,6 +369,8 @@ sub upgrading_redhat() { sub beforeInstallPackages { my ($o) = @_; + readBootloaderConfigBeforeInstall($o); + #- save these files in case of upgrade failure. if ($o->{isUpgrade}) { foreach (@filesToSaveForUpgrade) { |