This file is indexed.

/usr/share/perl5/Config/GitLike/Cascaded.pm is in libconfig-gitlike-perl 1.16-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
47
48
49
50
51
package Config::GitLike::Cascaded;
use Moo;
use Cwd;
use File::Spec;

extends 'Config::GitLike';

has 'cascade' => (
    default => sub { 1 },
    is => 'rw',
);

__PACKAGE__->meta->make_immutable;
no Moo;

1;

__END__

=head1 NAME

Config::GitLike::Cascaded - git-like config file parsing with cascaded inheritance

=head1 SYNOPSIS

This module exists purely for backwards compatibility; its use is
deprecated, and will be removed in a future release.

=head1 METHODS

=head2 cascade

This module simply defaults L<Config::GitLike/cascade> to a true value.

=head1 SEE ALSO

L<Config::GitLike|Config::GitLike>

=head1 LICENSE

You may modify and/or redistribute this software under the same terms
as Perl 5.8.8.

=head1 COPYRIGHT

Copyright 2010 Best Practical Solutions, LLC

=head1 AUTHORS

Alex Vandiver <alexmv@bestpractical.com>,
Christine Spang <spang@bestpractical.com>