summaryrefslogtreecommitdiffstats
path: root/perl-install/install2.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2004-01-06 17:02:14 +0000
committerPascal Rigaux <pixel@mandriva.com>2004-01-06 17:02:14 +0000
commit66a728f33639c6b4ca379e310f3c2536123fc014 (patch)
treefe6308c41aaf8252ff315e800cd0aab2b84b796a /perl-install/install2.pm
parentd5bdac3e48cbdf2317dc6bcf98cd5a5117af5ac0 (diff)
downloaddrakx-backup-do-not-use-66a728f33639c6b4ca379e310f3c2536123fc014.tar
drakx-backup-do-not-use-66a728f33639c6b4ca379e310f3c2536123fc014.tar.gz
drakx-backup-do-not-use-66a728f33639c6b4ca379e310f3c2536123fc014.tar.bz2
drakx-backup-do-not-use-66a728f33639c6b4ca379e310f3c2536123fc014.tar.xz
drakx-backup-do-not-use-66a728f33639c6b4ca379e310f3c2536123fc014.zip
obsolete livedrake, live_install, live_update
Diffstat (limited to 'perl-install/install2.pm')
-rw-r--r--perl-install/install2.pm8
1 files changed, 3 insertions, 5 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm
index 10bca278a..05ff0e46f 100644
--- a/perl-install/install2.pm
+++ b/perl-install/install2.pm
@@ -372,7 +372,6 @@ sub main {
display => sub { $o->{display} = $v },
askdisplay => sub { print "Please enter the X11 display to perform the install on ? "; $o->{display} = chomp_(scalar(<STDIN>)) },
security => sub { $o->{security} = $v },
- live => sub { $::live = 1 },
noauto => sub { $::noauto = 1 },
test => sub { $::testing = 1 },
patch => sub { $patch = 1 },
@@ -408,7 +407,7 @@ sub main {
}
undef $::auto_install if $cfg;
- if (!$::testing && !$::live) {
+ if (!$::testing) {
symlink "rhimage", "/tmp/image"; #- for compatibility with old stage1
unlink $_ foreach "/modules/modules.mar", "/sbin/stage1";
}
@@ -421,8 +420,7 @@ sub main {
move::init($o);
}
- $o->{prefix} = $::prefix = $::testing ? "/tmp/test-perl-install" : $::live || $::move ? "" : "/mnt";
- $o->{isUpgrade} = 1 if $::live;
+ $o->{prefix} = $::prefix = $::testing ? "/tmp/test-perl-install" : $::move ? "" : "/mnt";
mkdir $o->{prefix}, 0755;
devices::make("/dev/zero"); #- needed by ddcxinfos
@@ -651,7 +649,7 @@ sub main {
my $now = time() - 24 * 60 * 60;
utime $now, $now, "$o->{prefix}/$_";
}
- $::live or install_any::killCardServices();
+ install_any::killCardServices();
#- make sure failed upgrade will not hurt too much.
install_steps::cleanIfFailedUpgrade($o);