diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-08-08 16:23:37 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-08-08 16:23:37 +0000 |
commit | 6de860b270a522f6c2b621207ed17667e3fb0939 (patch) | |
tree | 3f0382b6d0dfec78b2a5fc7e1dd1afa6b8e79cd9 /perl-install/install_any.pm | |
parent | 710beeb7b08fdbef497f42cebbbc2e3c7529733c (diff) | |
download | drakx-6de860b270a522f6c2b621207ed17667e3fb0939.tar drakx-6de860b270a522f6c2b621207ed17667e3fb0939.tar.gz drakx-6de860b270a522f6c2b621207ed17667e3fb0939.tar.bz2 drakx-6de860b270a522f6c2b621207ed17667e3fb0939.tar.xz drakx-6de860b270a522f6c2b621207ed17667e3fb0939.zip |
timezone::read now returns a hash
Diffstat (limited to 'perl-install/install_any.pm')
-rw-r--r-- | perl-install/install_any.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index d2394f537..dd4441794 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -291,7 +291,7 @@ sub preConfigureTimezone { require timezone; #- can't be done in install cuz' timeconfig %post creates funny things - add2hash($o->{timezone}, { timezone::read($o->{prefix}) }) if $o->{isUpgrade}; + add2hash($o->{timezone}, timezone::read($o->{prefix})) if $o->{isUpgrade}; $o->{timezone}{timezone} ||= timezone::bestTimezone(lang::lang2text($o->{lang})); @@ -441,7 +441,6 @@ sub setAuthentication { my ($o) = @_; my ($shadow, $md5, $ldap, $nis, $winbind, $winpass) = @{$o->{authentication} || {}}{qw(shadow md5 LDAP NIS winbind winpass)}; my $p = $o->{prefix}; - #- obsoleted always enabled (in /etc/pam.d/system-auth furthermore) #any::enableMD5Shadow($p, $shadow, $md5); any::enableShadow($p) if $shadow; if ($ldap) { $o->pkg_install(qw(chkauth openldap-clients nss_ldap pam_ldap)); |