diff options
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", }); } |