This file is indexed.

/usr/share/gosa/plugins/admin/opsi/properties.tpl is in gosa-plugin-opsi 2.7.4+reloaded2-13+deb9u1.

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
<h3>{t}OPSI product properties{/t}</h3>


{if $cfg_count == 0}
 <h3>{t}This OPSI product has no options.{/t}</h3>
 {else}

 <table summary="{t}Package settings{/t}">
  {foreach from=$cfg item=item key=key}
   <tr>
    <td>
     {$key}
    </td>
    <td>
     {render acl=$ACL}
      {if isset($item.VALUE_CNT) && $item.VALUE_CNT}
       <select name="value_{$key}" style='width:180px;' size=1>
        {foreach from=$item.VALUE key=k item=i}
         <option {if $item.CURRENT == $i} selected {/if} value="{$i}">{$i}</option>
        {/foreach}
       </select>
      {else}
       <input type='text' name='value_{$key}' value="{$item.CURRENT}" style='width:280px;'>
      {/if}
     {/render}
    </td>
   </tr>
  {/foreach}
 </table>
{/if}
<hr>
<div class="plugin-actions">
 <button type='submit' name='save_properties'>{msgPool type=saveButton}</button>
 <button type='submit' name='cancel_properties'>{msgPool type=cancelButton}</button>
</div>