This file is indexed.

/usr/share/perl5/pgBackRest/Config/LoadFailback.pm is in pgbackrest 1.25-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
####################################################################################################################################
# Load C or Perl Config Code
####################################################################################################################################
package pgBackRest::Config::LoadFailback;

use strict;
use warnings FATAL => qw(all);
use Carp qw(confess);

use Exporter qw(import);
    our @EXPORT = qw();

use pgBackRest::Common::Log;
use pgBackRest::LibCLoad;

####################################################################################################################################
# Load the C library if present, else failback to the Perl code
####################################################################################################################################
if (libC())
{
    require pgBackRest::LibC;
    pgBackRest::LibC->import(qw(:config :configRule));
    push(@EXPORT, @{$pgBackRest::LibC::EXPORT_TAGS{config}});
    push(@EXPORT, @{$pgBackRest::LibC::EXPORT_TAGS{configRule}});
}
else
{
    require pgBackRest::Config::Data;
    pgBackRest::Config::Data->import();
    push(@EXPORT, @pgBackRest::Config::Data::EXPORT);

    require pgBackRest::Config::Rule;
    pgBackRest::Config::Rule->import();
    push(@EXPORT, @pgBackRest::Config::Rule::EXPORT);
}

1;