From 12e6fdaa602ca33e8b30ebaa43ec7632a00cbf8f Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Tue, 2 Oct 2007 09:28:56 +0000 Subject: - drakauth: o install lib64sasl2-plug-gssapi on x86_64 (instead of libsasl2-plug-gssapi) (thanks to Colin Close) --- perl-install/NEWS | 3 +++ perl-install/authentication.pm | 4 +++- 2 files changed, 6 insertions(+), 1 deletion(-) 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' ], -- cgit v1.2.1