This file is indexed.

/usr/share/perl5/Munin/Node/Configure/Debug.pm is in munin-node 2.0.33-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
38
39
40
41
42
43
44
45
46
47
package Munin::Node::Configure::Debug;

# $Id$

use strict;
use warnings;

use Exporter ();
our @ISA = qw/Exporter/;
our @EXPORT = qw/DEBUG/;

use Munin::Node::Config;
my $config = Munin::Node::Config->instance();


sub DEBUG { print '# ', @_, "\n" if $config->{DEBUG}; }


1;

__END__

=head1 NAME

Munin::Node::Configure::Debug - Prints a debug message in the standard munin-node-configure format.


=head1 SYNOPSIS

  DEBUG('This is a debug message');

=head1 SUBROUTINES

=over

=item B<DEBUG($message)>

Prints $message in the standard munin-node-configure format (to STDOUT,
prefixed with a '#' character), if and only if the DEBUG flag was set in the
Config instance.

$message should not have a leading '# ', or trailing newline.

=back

=cut
# vim: ts=4 : sw=4 : expandtab