This file is indexed.

/usr/share/perl5/NetApp/Filer/Option.pod is in libnetapp-perl 500.002-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
=head1 NAME

NetApp::Filer::Option -- OO Class for representing NetApp Filer options

=head1 SYNOPSIS

    use NetApp::Filer;

    my $filer = NetApp::Filer->new({ ... });

    my @options		= $filer->get_options;

    my $options		= $filer->get_option( $name );

    $filer->set_option(
	name		=> $name,
	value		=> $value,
    );

=head1 DESCRIPTION

This class is used to encapsulate the NetApp Filer options.

=head1 METHODS

=head2 get_name

Returns the name of the option.

=head2 get_value

Returns the value for the option.

=cut