diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-02-09 16:27:47 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-02-09 16:27:47 +0000 |
commit | 5b81add84d6f69ad60226abd75a5773b2284e5f6 (patch) | |
tree | 2e801b00018cc6e8ce187531ddb29e36272ae1ca /perl-install/install_steps.pm | |
parent | 047a962872257cf096d5fb5063bcc185df97951a (diff) | |
download | drakx-5b81add84d6f69ad60226abd75a5773b2284e5f6.tar drakx-5b81add84d6f69ad60226abd75a5773b2284e5f6.tar.gz drakx-5b81add84d6f69ad60226abd75a5773b2284e5f6.tar.bz2 drakx-5b81add84d6f69ad60226abd75a5773b2284e5f6.tar.xz drakx-5b81add84d6f69ad60226abd75a5773b2284e5f6.zip |
configureTimezone doesn't take parameter /etc/sysconfig/clock
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index a0a6b3119..a3fb7f72f 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -499,9 +499,9 @@ sub installCrypto { #------------------------------------------------------------------------------ sub configureTimezone { - my ($o, $f) = @_; + my ($o) = @_; require timezone; - timezone::write($o->{prefix}, $o->{timezone}, $f); + timezone::write($o->{prefix}, $o->{timezone}); } #------------------------------------------------------------------------------ |