/usr/share/perl5/TheSchwartz/ExitStatus.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 14 15 16 17 | # $Id$
package TheSchwartz::ExitStatus;
use strict;
use base qw( Data::ObjectDriver::BaseObject );
__PACKAGE__->install_properties(
{ columns => [
qw( jobid status funcid
completion_time delete_after )
],
datasource => 'exitstatus',
primary_key => 'jobid',
}
);
1;
|