summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/finish-install
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2005-06-01 03:44:24 +0000
committerPascal Rigaux <pixel@mandriva.com>2005-06-01 03:44:24 +0000
commitf83545cabfa4cc23b333bce333be938d91ab2309 (patch)
tree47408987ee8b8aec80208c9f11024bbbbd74b817 /perl-install/standalone/finish-install
parent23b9fd3b4319860f7e2e6eaaa4600e6155c520f0 (diff)
downloaddrakx-backup-do-not-use-f83545cabfa4cc23b333bce333be938d91ab2309.tar
drakx-backup-do-not-use-f83545cabfa4cc23b333bce333be938d91ab2309.tar.gz
drakx-backup-do-not-use-f83545cabfa4cc23b333bce333be938d91ab2309.tar.bz2
drakx-backup-do-not-use-f83545cabfa4cc23b333bce333be938d91ab2309.tar.xz
drakx-backup-do-not-use-f83545cabfa4cc23b333bce333be938d91ab2309.zip
add language selection to finish-install
Diffstat (limited to 'perl-install/standalone/finish-install')
-rwxr-xr-xperl-install/standalone/finish-install27
1 files changed, 23 insertions, 4 deletions
diff --git a/perl-install/standalone/finish-install b/perl-install/standalone/finish-install
index c3140d8f5..653ddf24a 100755
--- a/perl-install/standalone/finish-install
+++ b/perl-install/standalone/finish-install
@@ -9,6 +9,7 @@ use authentication;
use network::netconnect;
use security::level;
+$ENV{SHARE_PATH} ||= "/usr/share";
my $authentication = authentication::get();
my $security = security::level::get();
network::netconnect::read_net_conf(my $netcnx = {}, my $netc = {}, my $intf = {});
@@ -16,10 +17,19 @@ network::netconnect::read_net_conf(my $netcnx = {}, my $netc = {}, my $intf = {}
$::isWizard = 1;
my $in = 'interactive'->vnew;
+sub ask_language() {
+ require lang;
+ my $locale = lang::read();
+ any::selectLanguage_and_more_standalone($in, $locale);
+ lang::write($locale);
+ lang::set($locale);
+ Gtk2->set_locale;
+}
+
sub ask_network() {
my $modules_conf = modules::any_conf->read;
require network::netconnect;
- network::netconnect::real_main('', $netcnx, $in, $modules_conf, $netc, undef, $intf);
+ network::netconnect::real_main($netcnx, $in, $modules_conf, $netc, undef, $intf);
}
sub ask_authentication() {
@@ -45,11 +55,20 @@ sub ask_users() {
any::add_users($users, $authentication);
}
-eval { ask_network() };
+sub call {
+ my ($f_name) = @_;
+ log::l("calling $f_name");
+ my $f = $::{$f_name} or internal_error "bad function $f_name";
+ eval { $f->() };
+ log::l("$f_name failed: $@") if $@;
+}
+
+call('ask_language');
+call('ask_network');
$::WizardWindow->destroy; undef $::WizardWindow;
$::Wizard_pix_up = 'redhat-config-users';
-eval { ask_authentication() };
-eval { ask_users() };
+call('ask_authentication');
+call('ask_users');
setVarsInSh('/etc/sysconfig/finish-install', { FINISH_INSTALL => 'no' });
$in->exit(0);