This file is indexed.

/usr/share/puppet/modules.available/puppetlabs-apache/templates/vhost/_auth_kerb.erb is in puppet-module-puppetlabs-apache 3.0.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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 %>
  <%- end -%>
  <%- if @krb_method_k5passwd -%>
  KrbMethodK5Passwd <%= @krb_method_k5passwd %>
  <%- end -%>
  <%- if @krb_authoritative -%>
  KrbAuthoritative <%= @krb_authoritative %>
  <%- end -%>
  <%- if @krb_auth_realms and @krb_auth_realms.length >= 1 -%>
  KrbAuthRealms <%= @krb_auth_realms.join(' ') %>
  <%- end -%>
  <%- if @krb_5keytab -%>
  Krb5Keytab <%= @krb_5keytab %>
  <%- end -%>
  <%- if @krb_local_user_mapping -%>
  KrbLocalUserMapping <%= @krb_local_user_mapping %>
  <%- end -%>
  <%- if @krb_verify_kdc -%>
  KrbVerifyKDC <%= @krb_verify_kdc %>
  <%- end -%>
  <%- if @krb_servicename -%>
  KrbServiceName <%= @krb_servicename %>
  <%- end -%>
  <%- if @krb_save_credentials -%>
  KrbSaveCredentials <%= @krb_save_credentials -%>
  <%- end -%>

<% end -%>