This file is indexed.

/usr/share/perl5/Net/Rendezvous/Publish/Backend/Null.pm is in libnet-rendezvous-publish-perl 0.04-3.

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
package Net::Rendezvous::Publish::Backend::Null;

sub new {
    warn "We won't be doing any rendezvous publishing, please install a Net::Rendezvous::Publish::Backend:: module\n";
    bless {};
}

sub publish {}
sub publish_stop {}
sub step {}

1;