This file is indexed.

/usr/share/gosa/plugins/admin/systems/services/dhcp/dhcp_dnszone.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
{* GOsa dhcp host - smarty template *}
<h3>{t}DNS update zone{/t}</h3>

<table>
 <tr>
   <td>{t}DNS zone{/t}{$must}</td>
   <td>
     <select name='cn' > 
       {html_options options=$cns selected=$cn}
     </select>
   </td>
 </tr>
   <td>{t}DNS server{/t}{$must}</td>
   <td>
     <select name='dhcpDnsZoneServer'  >
       {html_options options=$dhcpDnsZoneServers selected=$dhcpDnsZoneServer}
     </select>
   </td>
 </tr>
 <tr>
   <td>{t}Key DN{/t}{$must}</td>
   <td>
     <select name='dhcpKeyDN'>
       {html_options options=$dhcpKeyDNs selected=$dhcpKeyDN}
     </select>
  </td>
 </tr>
</table>

<input type='hidden' name='dhcp_dnszone_posted' value='1'>

<hr>

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