This file is indexed.

/usr/share/zentyal/templates/network/wizard/interfaces.mas is in zentyal-network 2.3.13+quantal1.

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
<%args>
    @ifaces
</%args>
<%init>
use EBox::Gettext;
</%init>
<h3><% __('Network interfaces') %></h3>
<form method="post" action="./Network/Wizard/Ifaces" style="text-align: center">
        <div><img src="/data/images/interfaces.png" /></div>
        <h4><% __('Configure interface types') %></h4>
        <div><% __('External interfaces connect to networks that are not under your control (typically the Internet), traffic coming from external networks is not trusted by default, thus, you will not be able to connect to Zentyal administration page through them') %></div>
        <div style="margin: 10px">
% foreach my $iface ( @ifaces ) {
            <div style="text-align: center; width: 35%; margin: 0 auto">
            <div><span style="font-size: 1.3em"><% $iface %></span>:
                <input type="radio" id="<% $iface %>_scopeI" name="<% $iface %>_scope" value="internal" checked="true" />
                <label for="<% $iface %>_scopeI">Internal</label>
                <input type="radio" id="<% $iface %>_scopeE" name="<% $iface %>_scope" value="external" />
                <label for="<% $iface %>_scopeE">External</label>
            </div></div>
% }

        </div>
</form>