summaryrefslogtreecommitdiffstats
path: root/perl-install/authentication.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/authentication.pm')
-rw-r--r--perl-install/authentication.pm4
1 files changed, 3 insertions, 1 deletions
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' ],