This file is indexed.

/usr/share/perl5/graphincludes/params.pm is in libdeps-perl 0.13-1.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
# This file is part of the DEPS/graph-includes package
#
# (c) 2005,2006 Yann Dirson <ydirson@altern.org>
# Distributed under version 2 of the GNU GPL.

package graphincludes::params;
use strict;
use warnings;

our $VERSION='0.13';
our $verbose=0;
our $showdropped=0;
our $debug=0;
our ($minshow, $maxshow) = (1, 1);
our (@focus, @inclpath, @sysinclpath);
our $filename_regexp;

1;