This file is indexed.

/usr/share/gosa/plugins/admin/systems/services/dhcp/dhcp_service.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<h3>{t}Generic{/t}</h3>

<table width="100%" summary="{t}DHCP service{/t}">
 <tr>
  <td width="50%">
   {render acl=$acl}
    <input id='authoritative' type=checkbox name="authoritative" 
      value="1" {if $authoritative} checked {/if}>{t}Authoritative service{/t}
    <br>
   {/render}

   <br>{t}Dynamic DNS update{/t}
   {render acl=$acl}
    <select name='ddns_update_style'  title='{t}Dynamic DNS update style{/t}' size="1">
     {html_options values=$ddns_styles output=$ddns_styles selected=$ddns_update_style}
    </select>
   {/render}
  </td>
  <td>

   <table summary="{t}DHCP settings{/t}">
    <tr>
     <td>{t}Default lease time (s){/t}</td>
     <td>
      {render acl=$acl}
       <input type='text' name='default_lease_time' size='25' maxlength='80' 
        value='{$default_lease_time}' title='{t}Enter default lease time in seconds.{/t}'>
      {/render}
     </td>
    </tr>
    <tr>
     <td>{t}Maximum lease time (s){/t}</td>
     <td>
      {render acl=$acl}
       <input type='text' name='max_lease_time' size='25' maxlength='80' 
        value='{$max_lease_time}' title='{t}Enter maximum lease time in seconds.{/t}'>
      {/render}
     </td>
    </tr>
   </table>

  </td>
 </tr>
</table>

<hr>

<!-- Place cursor in correct field -->
<script language="JavaScript" type="text/javascript">
  <!-- // First input field on page	
  focus_field('authoritative');  -->
</script>