This file is indexed.

/usr/share/perl5/TheSchwartz/Error.pm is in libtheschwartz-perl 1.12-1.

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
# $Id$

package TheSchwartz::Error;
use strict;
use base qw( Data::ObjectDriver::BaseObject );

__PACKAGE__->install_properties(
    {   columns    => [qw( jobid funcid message error_time )],
        datasource => 'error',
    }
);

1;