summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r--perl-install/install_steps.pm5
1 files changed, 0 insertions, 5 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm
index 318b61b3c..dde0bb386 100644
--- a/perl-install/install_steps.pm
+++ b/perl-install/install_steps.pm
@@ -282,7 +282,6 @@ sub choosePackages {
sub beforeInstallPackages {
my ($o) = @_;
- log::l("before install packages");
#- save these files in case of upgrade failure.
if ($o->{isUpgrade}) {
foreach (@filesToSaveForUpgrade) {
@@ -293,18 +292,14 @@ sub beforeInstallPackages {
}
}
- log::l("before install packages, after copy");
#- some packages need such files for proper installation.
$::live or fs::write($o->{prefix}, $o->{fstab}, $o->{manualFstab}, $o->{useSupermount});
- log::l("before install packages, after adding localhost in hosts");
require network;
network::add2hosts("$o->{prefix}/etc/hosts", "localhost.localdomain", "127.0.0.1");
- log::l("before openning database");
require pkgs;
pkgs::init_db($o->{prefix}, $o->{isUpgrade});
- log::l("initialized database");
}
sub pkg_install {