This file is indexed.

/usr/lib/python2.7/dist-packages/Bcfg2/Reporting/templates/config_items/common.html is in bcfg2-server 1.4.0~pre2+git141-g6d40dace6358-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
33
34
35
36
37
38
39
40
41
42
43
44
{% extends "base-timeview.html" %}
{% load bcfg2_tags %}
{% load url from bcfg2_compat %}

{% block title %}Bcfg2 - Common Problems{% endblock %}

{% block extra_header_info %}
{% endblock%}

{% block pagebanner %}Common configuration problems{% endblock %}

{% block content %}
  {% filter_navigator %}
  <div id='threshold_box'>
    <form method='post' action='{{ request.path }}'>
    <span>Showing items with more then {{ threshold }} entries</span>
    <input type='text' name='threshold' value='{{ threshold }}' maxlength='5' size='5' />
    <input type='submit' value='Change' />
    </form>
  </div>
  {% for type_name, type_list in lists %}
    <div class='entry_list'>
      <div class='entry_list_head element_list_head' onclick='javascript:toggleMe("table_{{ type_name }}");'>
        <h3>{{ type_name|capfirst }} entries</h3>
        <div class='entry_expand_tab' id='plusminus_table_{{ type_name }}'>[&ndash;]</div>
      </div>
    {% if type_list %}
      <table id='table_{{ type_name }}' class='entry_list'>
      <tr style='text-align: left'><th>Type</th><th>Name</th><th>Count</th><th>Reason</th></tr>
      {% for item in type_list %}
        <tr class='{% cycle listview,listview_alt %}'>
          <td>{{ item.ENTRY_TYPE }}</td>
          <td><a href='{% url "reports_entry" item.class_name  item.pk %}'>{{ item.name }}</a></td>
          <td>{{ item.num_entries }}</td>
          <td><a href='{% url "reports_item" item.ENTRY_TYPE  item.pk %}'>{{ item.short_list|join:"," }}</a></td>
        </tr>
      {% endfor %}
      </table>
    {% else %}
    <p>There are currently no inconsistent {{ type_name }} configuration entries.</p>
    {% endif %}
    </div>
  {% endfor %}
{% endblock %}