This file is indexed.

/usr/share/zentyal/stubs/openvpn/upstart.mas is in zentyal-openvpn 2.3.10+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
<%doc>
   Template file to write the upstart file

   Parameters:

     cmd - String the command to run
     limited - Boolean indicating if the respawn is limited to 5 times
               within 40 seconds
</%doc>
<%args>
$cmd
$limited => 0
</%args>
exec <% $cmd %>
% if ($limited) {
respawn limit 5 40
% }
respawn