diff options
author | Vicent Guardiola <vguardiola@mandriva.com> | 2005-09-01 10:24:48 +0000 |
---|---|---|
committer | Vicent Guardiola <vguardiola@mandriva.com> | 2005-09-01 10:24:48 +0000 |
commit | 9ab4d1c20b3c35aa9d0e30e86fe989321b5fd565 (patch) | |
tree | 9b9b76c3911d79bd8839124e1471122f90042497 | |
parent | 58d2d82687df098320ea93811b3ede7a65ca7850 (diff) | |
download | drakx-9ab4d1c20b3c35aa9d0e30e86fe989321b5fd565.tar drakx-9ab4d1c20b3c35aa9d0e30e86fe989321b5fd565.tar.gz drakx-9ab4d1c20b3c35aa9d0e30e86fe989321b5fd565.tar.bz2 drakx-9ab4d1c20b3c35aa9d0e30e86fe989321b5fd565.tar.xz drakx-9ab4d1c20b3c35aa9d0e30e86fe989321b5fd565.zip |
Remove default_tgs_enctypes, default_tkt_enctypes, permitted_enctypes
from /etc/krb5.conf for winbind configuration, Buzgilla 15232
-rw-r--r-- | perl-install/authentication.pm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/perl-install/authentication.pm b/perl-install/authentication.pm index be861cc81..4fcf600d2 100644 --- a/perl-install/authentication.pm +++ b/perl-install/authentication.pm @@ -516,6 +516,9 @@ sub configure_krb5_for_AD { default_realm => $uc_domain, dns_lookup_realm => $authentication->{AD_server} ? 'false' : 'true', dns_lookup_kdc => $authentication->{AD_server} ? 'false' : 'true', + default_tgs_enctypes => undef, + default_tkt_enctypes => undef, + permitted_enctypes => undef, )); my @sections = ( |