This file is indexed.

/usr/share/zentyal/templates/ca/createCA.mas is in zentyal-ca 2.3.6+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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<%args>
</%args>
<%init>
  use EBox::Gettext;
  my @createTable = (
                     [ name => 'orgName', input => 'text',
                       printableName => __('Organization Name') ],
                     [ name => 'countryName', input => 'text',
                       printableName => __('Country code'),
                       size => '2',
                       optional => 1 ],
                     [ name => 'localityName', input => 'text',
                       printableName => __('City'),
                       optional => 1 ],
                     [ name => 'stateName', input => 'text',
                       printableName => __('State'),
                       optional => 1 ],
                     [ name => 'expiryDays', input => 'text',
                       printableName => __('Days to expire'),
                       value => '3650',
                       size => '5' ],
              #       [ name => 'caPassphrase', input => 'password',
              #         printableName => __('Passphrase') ],
              #       [ name => 'reCAPassphrase', input => 'password',
              #        printableName => __('Re-passphrase') ],
                     [ name => 'ca', input => 'submit',
                       value => __('Create') ]
                    );

</%init>
<div class="note">
  <% __("This page only appears once at starting up the Certification
  Authority.\nChanges take effect immediately.") %>
</div>
<h3><% __('Create Certification Authority Certificate') %></h3>
<form action='CreateCA' method='POST'>
  <& formTable.mas, rows => \@createTable &>
</form>