This file is indexed.

/usr/share/pyshared/maasserver/templates/maasserver/node_confirm_delete.html is in python-django-maas 1.2+bzr1373+dfsg-0ubuntu1~12.04.6.

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
{% extends "maasserver/base.html" %}

{% block nav-active-settings %}active{% endblock %}
{% block title %}Delete node{% endblock %}
{% block page-title %}Delete node{% endblock %}

{% block content %}
    <div class="block auto-width">
        <h2>
          Are you sure you want to delete the node "{{ node_to_delete }}"?
          Note that this node will be removed from this MAAS but the machine
          itself will be left untouched.
        </h2>
        <p>This action is permanent and can not be undone.</p>
        <p>
          <form action="." method="post">{% csrf_token %}
            <input type="hidden" name="post" value="yes" />
            <input type="submit" value="Delete node" class="right" />
            <a href="{% url 'node-view' node_to_delete.system_id %}">Cancel</a>
          </form>
        </p>
    </div>
{% endblock %}