diff options
author | Olivier Blin <oblin@mandriva.org> | 2006-03-08 16:14:05 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2006-03-08 16:14:05 +0000 |
commit | 9374ff78bb829e975264f6324617e8b220a8f775 (patch) | |
tree | d6b91577f6a99b25185b47ef900ad5a6cfb896e2 /perl-install/standalone/finish-install | |
parent | 622a3207dbbdcfc1de51ace512800d2b0bc8a747 (diff) | |
download | drakx-9374ff78bb829e975264f6324617e8b220a8f775.tar drakx-9374ff78bb829e975264f6324617e8b220a8f775.tar.gz drakx-9374ff78bb829e975264f6324617e8b220a8f775.tar.bz2 drakx-9374ff78bb829e975264f6324617e8b220a8f775.tar.xz drakx-9374ff78bb829e975264f6324617e8b220a8f775.zip |
reload sys clock from hc once we know the real timezone (#21511)
Diffstat (limited to 'perl-install/standalone/finish-install')
-rwxr-xr-x | perl-install/standalone/finish-install | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/perl-install/standalone/finish-install b/perl-install/standalone/finish-install index 1a20b5f25..ee8c89941 100755 --- a/perl-install/standalone/finish-install +++ b/perl-install/standalone/finish-install @@ -56,6 +56,8 @@ sub ask_timezone() { $t->{timezone} = $in->ask_from_treelist(N("Timezone"), N("Which is your timezone?"), '/', [ timezone::getTimeZones() ], $t->{timezone}) or return; $t->{UTC} = $in->ask_yesorno(N("Timezone"), N("Is your hardware clock set to GMT?"), $t->{UTC}); timezone::write($t); + #- reload sys clock from hc once we know the real timezone + timezone::reload_sys_clock($t); } sub ask_network() { |