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.pm15
1 files changed, 14 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm
index 622d14dc9..ce96047e6 100644
--- a/perl-install/install_steps.pm
+++ b/perl-install/install_steps.pm
@@ -82,6 +82,9 @@ sub errorInStep($$) {}
sub chooseLanguage($) {
$o->default("lang");
}
+sub chooseKeyboard($) {
+ $o->default("keyboard");
+}
sub selectInstallOrUpgrade($) {
$o->default("isUpgrade") || 0;
}
@@ -165,7 +168,17 @@ sub configureNetwork($) {
#res_init(); # reinit the resolver so DNS changes take affect
}
-sub timeConfig {}
+sub timeConfig {
+ my ($o, $f) = @_;
+ my $t = $o->default("timezone");
+
+ setVarsInSh($f, {
+ ZONE => $t->{timezone},
+ GMT => bool2text($t->{GMT}),
+ ARC => "false",
+ });
+}
+
sub servicesConfig {}
sub printerConfig {}