This file is indexed.

/usr/lib/perl5/File/Rsync/Config.pm is in libfile-rsync-perl 0.42-2.

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
# -*- perl -*-
# vim:ft=perl foldlevel=1
package File::Rsync::Config;

require Exporter;
use vars qw(@ISA @EXPORT %RsyncConfig);
use strict;

@EXPORT=qw(%RsyncConfig);
@ISA=qw(Exporter);

%RsyncConfig=(
      rsync_path => '/usr/bin/rsync',
);
1;