1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
<% if $auth_kerb { -%>
## Kerberos directives
<%- if $krb_method_negotiate { -%>
KrbMethodNegotiate <%= $krb_method_negotiate %>
<%- } -%>
<%- if $krb_method_k5passwd { -%>
KrbMethodK5Passwd <%= $krb_method_k5passwd %>
<%- } -%>
<%- if $krb_authoritative { -%>
KrbAuthoritative <%= $krb_authoritative %>
<%- } -%>
<%- if $krb_auth_realms and $krb_auth_realms.length >= 1 { -%>
KrbAuthRealms <%= $krb_auth_realms.join(' ') %>
<%- } -%>
<%- if $krb_5keytab { -%>
Krb5Keytab <%= $krb_5keytab %>
<%- } -%>
<%- if $krb_local_user_mapping { -%>
KrbLocalUserMapping <%= $krb_local_user_mapping %>
<%- } -%>
<%- if $krb_verify_kdc { -%>
KrbVerifyKDC <%= $krb_verify_kdc %>
<%- } -%>
<%- if $krb_servicename { -%>
KrbServiceName <%= $krb_servicename %>
<%- } -%>
<%- if $krb_save_credentials { -%>
KrbSaveCredentials <%= $krb_save_credentials -%>
<%- } -%>
<% } -%>
|