This file is indexed.

/usr/share/perl5/Object/Remote/Tied.pm is in libobject-remote-perl 0.004000-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
package Object::Remote::Tied;

use strictures 1;

#a proxied tied object just ties to the
#proxy object that exists on the remote
#side of the actual tied variable - when
#creating the remote tied variable the proxy
#is passed to the constructor

sub TIEHASH {
  return $_[1];
}

sub TIEARRAY {
  return $_[1];
}

1;