This file is indexed.

/usr/share/perl5/Alzabo/Create.pm is in libalzabo-perl 0.92-4.

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
package Alzabo::Create;

use Alzabo;

use Alzabo::Create::Column;
use Alzabo::Create::ColumnDefinition;
use Alzabo::Create::ForeignKey;
use Alzabo::Create::Index;
use Alzabo::Create::Table;
use Alzabo::Create::Schema;

use vars qw($VERSION);

$VERSION = 2.0;

1;

__END__

=head1 NAME

Alzabo::Create - Loads all Alzabo::Create::* classes

=head1 SYNOPSIS

  use Alzabo::Create;

=head1 DESCRIPTION

Using this module loads Alzabo::Create::* modules.

These are the core modules that allow a new set of objects to be
created.  This module should be used by any schema creation interface.

=head1 AUTHOR

Dave Rolsky, <autarch@urth.org>

=cut