This file is indexed.

/usr/share/gosa/plugins/admin/systems/services/dhcp/dhcp_pool.tpl is in gosa-plugin-dhcp 2.7.4+reloaded2-9ubuntu1.

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
{* GOsa dhcp sharedNetwork - smarty template *}

<h3>{t}Generic{/t}</h3>
<table width="100%" summary="{t}DHCP pool settings{/t}">
 <tr>
  <td width="50%">
   {t}Name{/t}{$must}
   {render acl=$acl}
    <input id='cn' type='text' name='cn' size='25' maxlength='80' value='{$cn}'
      title='{t}Name of pool{/t}'>
   {/render}
  </td>
  <td>{t}Range{/t}
   {$must}&nbsp;
   {render acl=$acl}
    <input type='text' name='range_start' size='25' maxlength='30' value='{$range_start}'>
   {/render}&nbsp;-&nbsp;
   {render acl=$acl}
    <input type='text' name='range_stop' size='25' maxlength='30' value='{$range_stop}'>
   {/render}
  </td>
 </tr>
</table>

<hr>

<!-- Place cursor in correct field -->
<script language="JavaScript" type="text/javascript">
<!-- // First input field on page  
  document.mainform.cn.focus();  
-->
</script>