This file is indexed.

/usr/share/perl5/RunApp/Base.pm is in librunapp-perl 0.13-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
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package RunApp::Base;

=head1 NAME

RunApp::Base - Base class for RunApp

=head1 SYNOPSIS

 use base 'RunApp::Base';

=cut

sub new {
  my $class = shift;
  my $self = bless {}, $class;
  %$self = @_;
  return $self;
}

sub load {
  my ($self, $class) = @_;
  {
    no strict 'refs';
    return if keys %{$class.'::'};
  }
  $class =~ s{::}{/}g;
  require "$class.pm";
}

=head1 AUTHORS

Chia-liang Kao <clkao@clkao.org>

Refactored from works by Leon Brocard E<lt>acme@astray.comE<gt> and
Tom Insam E<lt>tinsam@fotango.comE<gt>.

=head1 COPYRIGHT

Copyright (C) 2002-5, Fotango Ltd.

This module is free software; you can redistribute it or modify it
under the same terms as Perl itself.

=cut

1;