This file is indexed.

/usr/share/perl5/Module/Install/StandardDocuments.pm is in libmodule-package-rdf-perl 0.014-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
package Module::Install::StandardDocuments;

use 5.008;
use strict;
no warnings;

BEGIN {
	$Module::Install::StandardDocuments::AUTHORITY = 'cpan:TOBYINK';
	$Module::Install::StandardDocuments::VERSION   = '0.014';
};

use base 'Module::Install::Base';
our $AUTHOR_ONLY = 1;

sub clone_standard_documents
{
	my $self = shift;
	$self->admin->clone_standard_documents(@_) if $self->is_admin;
}

1;