summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps.pm
diff options
context:
space:
mode:
authorFrancois Pons <fpons@mandriva.com>2000-03-31 11:52:06 +0000
committerFrancois Pons <fpons@mandriva.com>2000-03-31 11:52:06 +0000
commit5999898cb22f35cfadbea9df40ee82e622be4519 (patch)
tree4d015a00ae722fd57f5593dbdc8c22e676948a2d /perl-install/install_steps.pm
parentbee063d9df87e71367e9b4ed98668a111b9ec62f (diff)
downloaddrakx-5999898cb22f35cfadbea9df40ee82e622be4519.tar
drakx-5999898cb22f35cfadbea9df40ee82e622be4519.tar.gz
drakx-5999898cb22f35cfadbea9df40ee82e622be4519.tar.bz2
drakx-5999898cb22f35cfadbea9df40ee82e622be4519.tar.xz
drakx-5999898cb22f35cfadbea9df40ee82e622be4519.zip
*** empty log message ***
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r--perl-install/install_steps.pm10
1 files changed, 5 insertions, 5 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm
index b22e8869a..df04546d5 100644
--- a/perl-install/install_steps.pm
+++ b/perl-install/install_steps.pm
@@ -2,6 +2,7 @@ package install_steps;
use diagnostics;
use strict;
+use vars qw(@filesToSaveForUpgrade);
#-######################################################################################
#- misc imports
@@ -23,7 +24,7 @@ use network;
use any;
use fs;
-my @filesToSaveForUpgrade = qw(
+@filesToSaveForUpgrade = qw(
/etc/ld.so.conf /etc/fstab /etc/hosts /etc/conf.modules
);
@@ -209,6 +210,7 @@ sub beforeInstallPackages {
fs::write($o->{prefix}, $o->{fstab}, $o->{manualFstab}, $o->{useSupermount});
network::add2hosts("$o->{prefix}/etc/hosts", "localhost.localdomain", "127.0.0.1");
+
require pkgs;
pkgs::init_db($o->{prefix}, $o->{isUpgrade});
}
@@ -344,13 +346,11 @@ GridHeight=70
}
#- move some file after an upgrade that may be seriously annoying.
+ #- and rename saved files to .mdkgiorig.
if ($o->{isUpgrade}) {
log::l("moving previous desktop files that have been updated to Trash of each user");
install_any::move_desktop_file($o->{prefix});
- }
- #- rename saved files to .mdkgiorig.
- if ($o->{isUpgrade}) {
foreach (@filesToSaveForUpgrade) {
if (-e "$o->{prefix}$_.mdkgisave") {
unlink "$o->{prefix}$_.mdkgiorig"; rename "$o->{prefix}/$_.mdkgisave", "$o->{prefix}/$_.mdkgiorig";
@@ -461,7 +461,7 @@ sub installCrypto {
# }
# }
}
- pkgs::install($o->{prefix}, $o->{isUpgrade}, [ values %$packages ]);
+ pkgs::install($o->{prefix}, $o->{isUpgrade}, [ values %$packages ]); #- TODO
}
#------------------------------------------------------------------------------