This file is indexed.

/usr/lib/python2.7/dist-packages/Bcfg2/Reporting/templates/config_items/item-failure.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
{% extends "config_items/item.html" %}
{% load syntax_coloring %}

{% block item_details %}
<div class='entry_list'>
    <div class='entry_list_head'>
        <h3>This item failed to bind on the server</h3>
    </div>
    <div class='diff_wrapper'>
        {{ item.message|syntaxhilight:"py" }}
    </div>
</div>
{% endblock %}