summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps.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/install_steps.pm
parentd5bdac3e48cbdf2317dc6bcf98cd5a5117af5ac0 (diff)
downloaddrakx-66a728f33639c6b4ca379e310f3c2536123fc014.tar
drakx-66a728f33639c6b4ca379e310f3c2536123fc014.tar.gz
drakx-66a728f33639c6b4ca379e310f3c2536123fc014.tar.bz2
drakx-66a728f33639c6b4ca379e310f3c2536123fc014.tar.xz
drakx-66a728f33639c6b4ca379e310f3c2536123fc014.zip
obsolete livedrake, live_install, live_update
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r--perl-install/install_steps.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm
index 80a6597c9..25be3e91c 100644
--- a/perl-install/install_steps.pm
+++ b/perl-install/install_steps.pm
@@ -111,7 +111,7 @@ sub selectLanguage {
if (!$o->{keyboard} || $o->{keyboard}{unsafe}) {
$o->{keyboard} = keyboard::from_usb() || keyboard::lang2keyboard($o->{locale}{lang});
$o->{keyboard}{unsafe} = 1;
- keyboard::setup($o->{keyboard}) if !$::live;
+ keyboard::setup($o->{keyboard});
}
$o->charsetChanged;
@@ -171,7 +171,7 @@ sub doPartitionDisksBefore {
eval { fs::umount("$o->{prefix}/proc") };
eval { fs::umount_all($o->{fstab}, $o->{prefix}) };
eval { sleep 1; fs::umount_all($o->{fstab}, $o->{prefix}) } if $@; #- HACK
- } if $o->{fstab} && !$::testing && !$::live;
+ } if $o->{fstab} && !$::testing;
}
#------------------------------------------------------------------------------