From 8eb8481405d181c9c8454a5fb4d6570019aa4c4a Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Mon, 28 Oct 2002 12:54:04 +0000 Subject: (preConfigureTimezone): don't set UTC in beginner mode if there is no windows --- perl-install/install_any.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perl-install') diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index c61cc0ff9..e5871b014 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -294,7 +294,7 @@ sub preConfigureTimezone { $o->{timezone}{timezone} ||= timezone::bestTimezone(lang::lang2text($o->{lang})); - my $utc = $::expert && !grep { isFat($_) || isNT($_) } @{$o->{fstab}}; + my $utc = !grep { isFat($_) || isNT($_) } @{$o->{fstab}}; my $ntp = timezone::ntp_server($o->{prefix}); add2hash_($o->{timezone}, { UTC => $utc, ntp => $ntp }); } -- cgit v1.2.1