diff options
author | Pascal Rigaux <pixel@mandriva.com> | 1999-12-14 16:42:45 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 1999-12-14 16:42:45 +0000 |
commit | ea1c93402dfa2aba19ab3dbc3551cd21572affb9 (patch) | |
tree | ec45ca3dd1f9c2899748fabe19ef9f4a2d1ba13d /perl-install/timezone.pm | |
parent | 0f4c7b1bab30307ecee99c03506b0bb632e5c51f (diff) | |
download | drakx-ea1c93402dfa2aba19ab3dbc3551cd21572affb9.tar drakx-ea1c93402dfa2aba19ab3dbc3551cd21572affb9.tar.gz drakx-ea1c93402dfa2aba19ab3dbc3551cd21572affb9.tar.bz2 drakx-ea1c93402dfa2aba19ab3dbc3551cd21572affb9.tar.xz drakx-ea1c93402dfa2aba19ab3dbc3551cd21572affb9.zip |
no_comment
Diffstat (limited to 'perl-install/timezone.pm')
-rw-r--r-- | perl-install/timezone.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/timezone.pm b/perl-install/timezone.pm index e5851b1dd..8ea53f333 100644 --- a/perl-install/timezone.pm +++ b/perl-install/timezone.pm @@ -21,7 +21,7 @@ sub read ($) { my ($f) = @_; my %t = getVarsFromSh($f) or die "cannot open file $f: $!"; - ("timezone", $t{ZONE}, "GMT", text2bool($t{GMT})); + ("timezone", $t{ZONE}, "UTC", text2bool($t{UTC})); } sub write($$$) { @@ -31,7 +31,7 @@ sub write($$$) { $@ and log::l("installing /etc/localtime failed"); setVarsInSh($f, { ZONE => $t->{timezone}, - GMT => bool2text($t->{GMT}), + UTC => bool2text($t->{UTC}), ARC => "false", }); } |