summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/NEWS3
-rw-r--r--perl-install/authentication.pm4
2 files changed, 6 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index 71301d300..981a039b2 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,3 +1,6 @@
+- drakauth:
+ o install lib64sasl2-plug-gssapi on x86_64 (instead of libsasl2-plug-gssapi)
+
Version 10.4.225 - 1 October 2007, by Thierry Vignaud
- diskdrake:
diff --git a/perl-install/authentication.pm b/perl-install/authentication.pm
index 86fae207b..53b965c5d 100644
--- a/perl-install/authentication.pm
+++ b/perl-install/authentication.pm
@@ -2,6 +2,8 @@ package authentication; # $Id$
use common;
+my $lib = arch() =~ /x86_64/ ? 'lib64' : 'lib';
+
sub kinds {
my $no_para = @_ == 0;
my ($do_pkgs) = @_;
@@ -53,7 +55,7 @@ my %kind2packages = (
local => [],
SmartCard => [ 'castella-pam' ],
LDAP => [ 'openldap-clients', 'nss_ldap', 'pam_ldap', 'autofs' ],
- AD => [ 'nss_ldap', 'pam_krb5', 'libsasl2-plug-gssapi' ],
+ AD => [ 'nss_ldap', 'pam_krb5', $lib . 'sasl2-plug-gssapi' ],
NIS => [ 'ypbind', 'autofs' ],
winbind => [ 'samba-winbind' ],
SMBKRB => [ 'samba-winbind', 'pam_krb5', 'samba-server', 'samba-client' ],